Last active
October 11, 2020 06:03
-
-
Save gidgid/90c1d1220692b329df08bc1a6727457b to your computer and use it in GitHub Desktop.
type hints only works on some dictionaries
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from typing import Dict | |
ids_to_names: Dict[str, str] = { | |
"1234": "John", | |
"2345": "Doe", | |
"3456": "Alice", | |
"4567": "Bob", | |
} # 1 | |
user = {"name": "John", "last_name": "Doe", "age": 42} # 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment