1# Python will always remain a dynamically typed language.
2# However, PEP 484 introduced type hints, which make it possible to
3# also do static type checking of Python code.
4
5name: str = 'Bob'
6age: int = 32
7rating: float = 7.9
8is_premium: bool = True