Python Syntax
Python Indentations
if 5 > 2:
print("Five is greater than two!")Comments
# This is a comment.
print("Hello, World!")Docstrings
References
Last updated
if 5 > 2:
print("Five is greater than two!")# This is a comment.
print("Hello, World!")Last updated
"""This is a
multiline docstring."""
print("Hello, World!")