python dict comprehension code example
Example 1: create dictionary comprehension python
{key:value for key in iterable}
Example 2: python set and dictionary comprehensions
simple_dict = {
'a': 1,
'b': 2
}
my_dict = {key: value**2 for key,value in simple_dict.items()}
print(my_dict)
Example 3: dictionary comprehension python
square_dict = {num: num*num for num in range(1, 11)}
Example 4: python dictionary comprehension
dict1 = {'a': 1, 'b': 2, 'c': 3, 'd': 4, 'e': 5}
double_dict1 = {k:v*2 for (k,v) in dict1.items()}
Example 5: dict comprehension python
fruits = ["apple", "banana", "cherry"]
print({f: len(f) for f in fruits})
{'apple': 5, 'banana': 6, 'cherry': 6}
Example 6: types of dict comprehension
{j:j*2 for i in range(10)}
{j:j*2 for j in range(10) if j%2==0}
{j:j*2 for j in range(10) if j%2==0 and j%3==0}
{j:(j*2 if j%2==0 and j%3==0 else 'invalid' )for j in range(10) }