Python Basics โ Day 10 Dictionaries in Python
01. What is a Dictionary?
A dictionary is a data structure that stores data as Key:Value pairs.
Defined using curly braces {}.
student = {
"name": "Sabin",
"age": 35,
"major": "Computer Science"
}
๐ Key Points:
Keys must be immutab...
sabinsim.hashnode.dev2 min read