Answers for "python list set dictionary comprehension"

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

Code answers related to "python list set dictionary comprehension"

Python Answers by Framework

Browse Popular Code Answers by Language