Skip to content

Instantly share code, notes, and snippets.

@chicagowebmanagement
Created March 25, 2019 22:14
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 chicagowebmanagement/2f41d6f1e49a7389ccd761d9462729e2 to your computer and use it in GitHub Desktop.
Save chicagowebmanagement/2f41d6f1e49a7389ccd761d9462729e2 to your computer and use it in GitHub Desktop.
A dictionary with A list, a tuple and a dictionary
listy={"Siblings":["Patrick", "Steve", "John", "Ricardo","Melissa"]}
tuply={"1532 House Location":("42.014078", "-87.669435")}
dicty={"Address":{"county":"Cook", "planet":"Earth","galaxy":"Milky Way"}}
print(listy)
print(tuply)
print(dicty)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment