Python Dictionary and the DRY Principle: A Quick Guide for Beginners
Hey there! 馃憢 If you鈥檙e diving into Python programming, you鈥檝e probably stumbled upon dictionaries and maybe wondered, 鈥淲hat exactly is a dictionary in Python, and how can it help me code smarter?鈥� No worries let鈥檚 break it down in a super simple way.
What鈥檚 a Dictionary in Python?
Imagine you have a list of items, and each item has a unique label attached to it, like 鈥渘ame: John鈥� or 鈥渁ge: 25鈥�. A dictionary in Python works exactly like that! It鈥檚 a collection of key value pairs, where each key is unique and points to a specific value. Think of it as a mini database for storing information in a neat and organized way.
It鈥檚 like a real dictionary where you look up a word (the key) and get its meaning (the value). Cool, right? 馃槑
How to Make a Dictionary in Python?
Creating a dictionary is as easy as pie. You just use curly braces {}
and separate each key value pair with a colon :
.
Here鈥檚 how you can make a simple dictionary:
# Creating a dictionary to store student information
student_info = {
'name': 'John Doe',
'age': 21,
'major': 'Computer Science'
}
# Printing out the dictionary
print(student_info)
This dictionary stores a student鈥檚 name, age, and major. Notice how the keys like 'name'
and 'age'
are in quotes? That鈥檚 because keys can be strings, numbers, or even tuples! The values can be anything strings, lists, other dictionaries, you name it.
How Dictionaries Help Us to Avoid Repetition (DRY Principle)
Now, here鈥檚 where it gets interesting. You may have heard of the DRY principle, which stands for Don鈥檛 Repeat Yourself. It鈥檚 a rule that encourages you to avoid redundancy in your code. How can dictionaries help with that? Let鈥檚 take a look.
Before Using a Dictionary (Repeating Code)
Imagine you want to store information about students in separate variables. It might look something like this:
student1_name = 'Alice'
student1_age = 20
student1_major = 'Mathematics'
student2_name = 'Bob'
student2_age = 22
student2_major = 'Physics'
Not only do we have repetitive variable names, but if we want to print or update these, we have to repeat ourselves again and again. This is where dictionaries can save the day! 馃Ω
Example 1: After Using a Dictionary (DRY Version)
With dictionaries, we can store all this information in a cleaner way:
# Using dictionaries to store student data
students = {
'student1': {'name': 'Alice', 'age': 20, 'major': 'Mathematics'},
'student2': {'name': 'Bob', 'age': 22, 'major': 'Physics'}
}
print(students['student1']['name']) # Output: Alice
print(students['student2']['age']) # Output: 22
Now, you don鈥檛 have to create separate variables for each student鈥檚 name, age, and major. You can access or update the information in a much simpler way. Plus, it makes your code cleaner and easier to manage.
Example 2: Avoiding Repetition with Dictionaries
Let鈥檚 say you want to create a simple grading system based on student scores. Without dictionaries, you might end up writing the following:
# Without dictionary (repeating code)
alice_score = 90
bob_score = 75
charlie_score = 85
if alice_score >= 85:
print("Alice gets an A")
if bob_score >= 85:
print("Bob gets an A")
if charlie_score >= 85:
print("Charlie gets an A")
Here, we鈥檙e repeating the if
statements and hardcoding each student鈥檚 name and score, which violates the DRY principle.
Instead, with a dictionary, you can avoid repetition like this:
# Using a dictionary (DRY principle)
student_scores = {'Alice': 90, 'Bob': 75, 'Charlie': 85}
for student, score in student_scores.items():
if score >= 85:
print(f"{student} gets an A")
Now, you have a cleaner, shorter, and more maintainable code! You only write the if
statement once, and it works for all students in your dictionary. 馃帀
Useful Dictionary Methods
Dictionaries come with a bunch of built-in methods that make working with them a breeze. Let鈥檚 check out a few of them:
-
.get()
: Helps you avoid errors if the key doesn鈥檛 exist.
print(student_info.get('address', 'Address not available'))
# Output: Address not available
-
.keys()
and.values()
: Get all keys or values in the dictionary.
print(student_info.keys()) # Output: dict_keys(['name', 'age', 'major'])
print(student_info.values()) # Output: dict_values(['John Doe', 21, 'Computer Science'])
-
.items()
: Get both keys and values as pairs.
for key, value in student_info.items():
print(f'{key}: {value}')
# Output:
# name: John Doe
# age: 21
# major: Computer Science
-
.update()
: Update a dictionary with another dictionary or key-value pairs.
student_info.update({'grade': 'A'})
print(student_info)
# Output: {'name': 'John Doe', 'age': 21, 'major': 'Computer Science', 'grade': 'A'}
-
.setdefault()
: Adds a key with a default value if the key doesn鈥檛 exist.
student_info.setdefault('graduation_year', 2024)
print(student_info)
# Output: {'name': 'John Doe', 'age': 21, 'major': 'Computer Science', 'grade': 'A', 'graduation_year': 2024}
Wrapping Up
Dictionaries are super powerful and can really help you follow the DRY principle in your code. By using dictionaries, you avoid repeating yourself, keep your code organized, and make it easier to read and maintain.
So, the next time you find yourself creating a bunch of similar variables, consider using a dictionary instead. It鈥檒l save you a ton of time and effort, and your future self will thank you! 馃檶
Happy coding! 馃捇
Top comments (0)