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

AI Tutor

Ask about the topic

Sign in Required

Please sign in to use the AI tutor

Sign In