list comprehension from dictionary python code example
Example 1: create dictionary comprehension python
{key:value for key in iterable}
Example 2: 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 3: dictionary comprehension python
print({i:j for i,j in zip(txt_list,num) if i!="All"})