```html

Python Cheat Sheet

Variables

num = 10
str = "Hello"

Conditionals

if a > b:
elif a == b:
else:

Loops

for i in range(5):
while a < b:

Functions

def func_name():

Data Structures

list = [1, 2, 3]
dict = {"key": "value"}

Best Practices

# Use meaningful variable names
# Comment your code
# Follow PEP8 guidelines
```