Type Hints Basics
Adding type annotations
Interview Relevant: Modern Python
Type Hints
Python 3.5+ allows optional type annotations for better tooling and readability.
Code Examples
python
1def greet(name: str) -> str:
2 return "Hello " + name
3
4age: int = 25