Python Syntax
Indentation
if 5 > 2:
print("Five is greater than two!")Statements and New Lines
name = "Ada"
print(name)total = (
10
+ 20
+ 30
)Comments
Docstrings
Common Pitfalls
References
Last updated