"""
COMPLETE PYTHON CHEATSHEET - PYTHON 3.12+
=============================
"""

# ===========================================
# 1. BASIC SYNTAX & SETUP
# ===========================================

# Shebang (Unix/Linux)
#!/usr/bin/env python3

# Module docstring
"""Module documentation goes here."""

# Importing modules
import math ...