Python
Python Basics
- Introduction to Python and Its History
- Python Syntax and Indentation
- Python Variables and Data Types
- Dynamic and Strong Typing
- Comments and Docstrings
- Taking User Input (input())
- Printing Output (print())
- Python Operators (Arithmetic, Logical, Comparison)
- Type Conversion and Casting
- Escape Characters and Raw Strings
Data Structures in Python
- Strings and String Manipulation
- Lists
- Tuples
- Dictionaries
- Python Sets: Unordered Collections
- List Comprehensions and Generator Expressions
- Dictionary Comprehensions
- Set Comprehensions
- Indexing and Slicing
- String Formatting
Control Flow and Loops
- Conditional Statements: if, elif, and else
- Loops and Iteration
- While Loops
- Nested Loops
- Loop Control Statements
- Iterators and Iterables
- List, Dictionary, and Set Iterations
Python Core Concepts
Python Collections
- Python collections ChainMap
- Python collections
- Python collections ChainMap<
- Python counters
- Python deque
- Python dictionary
- Python Lists
Python Programs
- Array : Find median in an integer array
- Array : Find middle element in an integer array
- Array : Find out the duplicate in an array
- Array : Find print all subsets in an integer array
- Program : Array : Finding missing number between from 1 to n
- Array : Gap and Island problem
- Python Program stock max profit
- Reverse words in Python
- Python array duplicate program
- Coin change problem in python
- Python Write fibonacci series program
- Array : find all the pairs whose sum is equal to a given number
- Find smallest and largest number in array
- Iterate collections
- List comprehensions
- Program: Calculate Pi in Python
- String Formatting in Python
What Are Dictionary Comprehensions in Python?
Dictionary comprehensions in Python provide a concise and readable way to create dictionaries. Similar to list comprehensions, they allow you to generate dictionaries in a single line of code, making your programs more efficient and easier to understand.
A dictionary comprehension consists of:
- An expression pair (
key: value
) - A
for
loop to iterate over an iterable - An optional
if
condition for filtering
Basic Syntax:
{key_expression: value_expression for item in iterable}
Why Use Dictionary Comprehensions?
- Concise and Readable: Reduces multiple lines of loop-based dictionary creation into a single line.
- Faster Execution: Often more efficient than traditional loops.
- Flexible: Supports conditions and transformations.
Simple Dictionary Comprehension Examples
Example 1: Creating a Dictionary from a List
numbers = [1, 2, 3, 4, 5]
squared_dict = {num: num**2 for num in numbers}
print(squared_dict)
Output:
{1: 1, 2: 4, 3: 9, 4: 16, 5: 25}
Example 2: Mapping Names to Their Lengths
names = ["Alice", "Bob", "Charlie"]
name_lengths = {name: len(name) for name in names}
print(name_lengths)
Output:
{'Alice': 5, 'Bob': 3, 'Charlie': 7}
Adding Conditions in Dictionary Comprehensions
You can include if
conditions to filter items.
Example 3: Filtering Even Numbers Only
numbers = [1, 2, 3, 4, 5, 6]
even_squares = {num: num**2 for num in numbers if num % 2 == 0}
print(even_squares)
Output:
{2: 4, 4: 16, 6: 36}
Example 4: Using if-else Conditions
numbers = [1, 2, 3, 4, 5]
odd_even = {num: ("Even" if num % 2 == 0 else "Odd") for num in numbers}
print(odd_even)
Output:
{1: 'Odd', 2: 'Even', 3: 'Odd', 4: 'Even', 5: 'Odd'}
Nested Dictionary Comprehensions
You can also use nested loops inside dictionary comprehensions.
Example 5: Creating a Multiplication Table
multiplication_table = {
i: {j: i * j for j in range(1, 6)} for i in range(1, 6)
}
print(multiplication_table)
Output:
{
1: {1: 1, 2: 2, 3: 3, 4: 4, 5: 5},
2: {1: 2, 2: 4, 3: 6, 4: 8, 5: 10},
3: {1: 3, 2: 6, 3: 9, 4: 12, 5: 15},
4: {1: 4, 2: 8, 3: 12, 4: 16, 5: 20},
5: {1: 5, 2: 10, 3: 15, 4: 20, 5: 25}
}
Dictionary Comprehensions vs. For Loops
Traditional For Loop Approach:
numbers = [1, 2, 3, 4, 5]
squared_dict = {}
for num in numbers:
squared_dict[num] = num**2
print(squared_dict)
Dictionary Comprehension Approach:
squared_dict = {num: num**2 for num in numbers}
Advantages of Dictionary Comprehension:
✔ Fewer lines of code
✔ More readable
✔ Faster execution
Practical Use Cases of Dictionary Comprehensions
1. Converting Two Lists into a Dictionary
keys = ['a', 'b', 'c']
values = [1, 2, 3]
dict_from_lists = {k: v for k, v in zip(keys, values)}
print(dict_from_lists)
Output:
{'a': 1, 'b': 2, 'c': 3}
2. Modifying Keys and Values
original_dict = {'a': 1, 'b': 2, 'c': 3}
modified_dict = {k.upper(): v*2 for k, v in original_dict.items()}
print(modified_dict)
Output:
{'A': 2, 'B': 4, 'C': 6}
3. Filtering Dictionary Items
student_scores = {'Alice': 85, 'Bob': 60, 'Charlie': 72, 'David': 90}
passed_students = {name: score for name, score in student_scores.items() if score >= 70}
print(passed_students)
Output:
{'Alice': 85, 'Charlie': 72, 'David': 90}
Common Mistakes to Avoid
-
Forgetting the
key:value
Pair:
❌{num for num in range(5)}
→ This creates a set, not a dictionary.
✅{num: num*2 for num in range(5)}
-
Using Mutable Keys:
- Dictionary keys must be immutable (e.g., strings, numbers, tuples).
❌{[1,2]: "list"}
→ Error (lists are mutable).
- Dictionary keys must be immutable (e.g., strings, numbers, tuples).
-
Overcomplicating Logic:
- If the logic is too complex, a traditional loop may be more readable.
Conclusion
Dictionary comprehensions are a powerful feature in Python that help you create dictionaries efficiently. They improve code readability, reduce execution time, and make dictionary manipulation easier. By mastering dictionary comprehensions, you can write cleaner and more Pythonic code.
Key Takeaways:
✔ Use {key: value for item in iterable}
for basic dictionary creation.
✔ Add if
conditions to filter items.
✔ Use nested comprehensions for complex dictionaries.
✔ Prefer dictionary comprehensions over loops for simplicity.