Created
April 18, 2021 11:18
-
-
Save Naartti/3b3a3f393b5df7b926f53b86cf220b3d to your computer and use it in GitHub Desktop.
Basic typed Python variable declaration
This file contains 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
name = "Mattias" | |
age = 28 | |
loves_coding = True | |
hobbies: list[str] = [] | |
skills: dict[str, float] = {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment