Variables

name: str = "Alice"
age: int = 30
is_active: bool = True

Function Parameters

def greet(name: str) -> str:
    return f"Hello, {name}!"