Answers for "python set and dictionary comprehensions"

1

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)
#result = {'a': 1, 'b': 4}
Posted by: Guest on September-24-2020
1

dict comprehension python

keys=['var1','var2','var3']
my_dict={key:np.zeros(10) for key in keys}
Posted by: Guest on April-01-2020

Code answers related to "python set and dictionary comprehensions"

Python Answers by Framework

Browse Popular Code Answers by Language