Learn Python Comments
There are two main types of comments in Python:
# This is a single-line comment print("Hello, World!")
""" This is a multi-line comment. It can span multiple lines of code. """ print("Hello, World!")
See also: