Python Type Hints Cheat Sheet
2022-01-13
Quick reference for Python 3.9+. For greater detail, see this cheat sheet.
Basic types:
1 2 3 4 5 | |
Collection types:
1 2 3 4 5 6 7 8 9 10 11 | |
Multiple or unknown types:
1 2 3 4 5 6 7 8 9 10 | |
Function types:
1 2 3 4 5 6 7 | |
Generator and iterator types:
1 2 3 4 5 6 7 8 9 | |