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 291 views
291 views asked Dec 11, 2018 by avibootz
1 answer 113 views
1 answer 107 views
1 answer 130 views
1 answer 318 views
2 answers 294 views
1 answer 229 views
229 views asked Jul 28, 2017 by avibootz
...