Skip to content

Instantly share code, notes, and snippets.

@fatosmorina
Created August 29, 2021 07:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fatosmorina/e6074776069cf833e7168e62b4b935f8 to your computer and use it in GitHub Desktop.
Save fatosmorina/e6074776069cf833e7168e62b4b935f8 to your computer and use it in GitHub Desktop.
defaultdict.py
from collections import defaultdict
my_dictonary = defaultdict(str)
my_dictonary['name'] = "Name"
my_dictonary['surname'] = "Surname"
print(my_dictonary["age"])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment