Type hints (PEP 484+) let you annotate the expected types of variables, function parameters, and return values. They're optional and not enforced at runtime — Python ignores them when running — but they enable static analysis, better tooling, and clearer code.
Basic syntax
() -> :
name * times
age: =
names: [] = [, ]
scores: [, ] = {: }
