Python – Comments
Single-line Comments In Python, single-line comments start with #, for example: # This is a single-line comment print("hello") Multi-line Comments Multi-line comments are enclosed with three single quotes ”’ or three double quotes “””, for example: 1. Single Quotes (”’) '''This is a multi-line comment, using three single quotes This is a multi-line comment, using … Read more