Skip to content

Instantly share code, notes, and snippets.

@andeoliveira
Created March 22, 2021 16:12
Show Gist options
  • Save andeoliveira/a446028903be0b5b884e782853922610 to your computer and use it in GitHub Desktop.
Save andeoliveira/a446028903be0b5b884e782853922610 to your computer and use it in GitHub Desktop.
Dicionários no Python
#Dicionários Python
bandas_dicionario = {"Rock Alternativo":"Red Hot Chili Peppers", "Indie Rock": "The Strokes", "Punk":"Ramones"}
print(type(bandas_dicionario)) #<class 'dict'>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment