Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Naartti/3b3a3f393b5df7b926f53b86cf220b3d to your computer and use it in GitHub Desktop.
Save Naartti/3b3a3f393b5df7b926f53b86cf220b3d to your computer and use it in GitHub Desktop.
Basic typed Python variable declaration
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