Answers for "set empty dictionary key python"

-1

python create empty dictionary with keys

>>> keys = [1,2,3,5,6,7]
>>> {key: None for key in keys}
{1: None, 2: None, 3: None, 5: None, 6: None, 7: None}
Posted by: Guest on February-22-2021
0

set empty dictionary key python

#Create a dictionary with a set of keys without any values
key_list = [1,2,3,4,5]
w_dict = dict(zip(key_list, [None]*len(key_list)))
print(w_dict)
Posted by: Guest on March-28-2022

Code answers related to "set empty dictionary key python"

Python Answers by Framework

Browse Popular Code Answers by Language