Programming

Python Programming Language

Comments

Comments in Python begin with a hash mark (#) and whitespace character and continue to the end of the line.

1
2
# Print “Hello, World!” to console
print("Hello, World!")