How to comment a block of code in Python

1 Answer

0 votes
'''
import time

start = time.process_time()

print("time used to execute this print: ")

end = time.process_time()

print(end - start)
'''

print("comment a block of code")






'''
run:

comment a block of code

'''

 



answered Apr 30, 2021 by avibootz

Related questions

1 answer 287 views
287 views asked Dec 11, 2018 by avibootz
1 answer 112 views
1 answer 106 views
1 answer 126 views
1 answer 314 views
2 answers 292 views
1 answer 226 views
226 views asked Jul 28, 2017 by avibootz
...