Skip to content

Instantly share code, notes, and snippets.

View eisbilen's full-sized avatar

Erdem İşbilen eisbilen

  • Ford Motor Company
  • UK - Brentwood
View GitHub Profile
@eisbilen
eisbilen / CreatingEmptyDictionary.py
Last active November 1, 2020 21:50
Creating Empty Dictionary in Python
# creating an empty dictionary with curly brackets
employees = {}
employees = {"id01": "George", "id02": "Nell", "id03": "Jasper"}
employees["id04"] = "Friedman"
employees["id05"] = "Lindsay"
employees["id06"] = "Burnett"
print(employees)