Articles → Python → Comments In Python
Comments In Python
What Are Comments?
Click to Enlarge
How To Comment And Uncomment Multiple Lines?
- Select the lines you want to comment.
- Go to Format → Comment Out Region.
Click to Enlarge
- Select the lines you want to comment.
- Go to Format → Uncomment Region.
Click to Enlarge
Multiline Comments
print("This is the multiline comment")
'''
print("This line will not get printed")
'''
Click to Enlarge