Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 250 Bytes

File metadata and controls

21 lines (15 loc) · 250 Bytes

Comments

Use the # symbol.

# This is a single-line comment
x = 5  # This is an inline comment

Use triple quotes (''' or """).

"""
This is a
multi-line comment
"""
x = 5

Go Back