python list comprehension dictionary code example
Example 1: create dictionary comprehension python
{key:value for key in iterable}
Example 2: dictionary comprehension python
square_dict = {num: num*num for num in range(1, 11)}
Example 3: dict comprehension python
# dict comprehension we use same logic, with a difference of key:value pair
# {key:value for i in list}
fruits = ["apple", "banana", "cherry"]
print({f: len(f) for f in fruits})
#output
{'apple': 5, 'banana': 6, 'cherry': 6}
Example 4: dictionary comprehension in python
# dictionary comprehension
# these are a little bit tougher ones than list comprehension
sample_dict = {
'a': 1,
'b': 2,
'c': 3,
'd': 4,
'e': 5
}
# making squares of the numbers using dict comprehension
square_dict = {key:value**2 for key, value in sample_dict.items()}
print(square_dict)
square_dict_even = {key:value**2 for key, value in sample_dict.items() if value % 2 == 0}
print(square_dict_even)
# if you don't have a dictionary and you wanna create a dictionary of a number:number**2
square_without_dict = {num:num**2 for num in range(11)}
print(square_without_dict)
Example 5: dictionary comprehension python
print({i:j for i,j in zip(txt_list,num) if i!="All"})
Example 6: dict comprehension python
keys=['var1','var2','var3']
my_dict={key:np.zeros(10) for key in keys}