Python uses indentation to define code blocks instead of curly braces.
if 5 > 2:
print("Five is greater than two!")
# This is a single-line comment
"""
This is a
multi-line comment
"""
x = 5 # Integer
y = "Hello" # String
print("Hello World")
print(1, 2, 3, sep="-") # Output: 1-2-3
total = 1 + \
2 + \
3