Dictionary in Python

Publicado em: 21 Setembro 2021
no canal de: Nuruzzaman Faruqui
281
2

Dictionary is one of the built-in data structures in Python. Whenever we need to work with data those come in ‘Key: Value’ pair, we use dictionary. That means dictionaries are data structure that stores information associated with particular key. In this lesson, we will learn to use Python dictionary.

The Python code used in this lesson:

user = {
"Name": "Nuruzzaman Faruqui",
"Age": 28,
"Email": "faruquizaman27@gmail.com",
"is_Verified": True
}
user["Age"] = 29
user["Job"] = "Teaching"
print(user)

‘You are free to copy, edit, use and distribute this code without crediting the author. Enjoy copyright-free content.’ – Nuruzzaman Faruqui.


Nesta página do site você pode assistir ao vídeo on-line Dictionary in Python duração hora minuto segundo em boa qualidade , que foi baixado pelo usuário Nuruzzaman Faruqui 21 Setembro 2021, compartilhe o link com seus amigos e conhecidos, no youtube este vídeo já foi visto 281 vezes e gostou 2 espectadores. Boa visualização!