Define type alias



examples/python-types-at-pyweb-2025-01/defined_type_alias.py
LabelType = str

txt = "hello"
label: LabelType = txt

print(label)