python fromkeys definition code example

Example 1: fromkeys in python

sequence1={1,2,3}
sequence2={"a","b","c"}
values1="Numbers"
values2="Alphabets"
dict1.fromkeys(sequence1,values1)
#returns {1: 'Numbers', 2: 'Numbers', 3: 'Numbers'}

dict2.fromkeys(sequence2,values2)
#returns {'c': 'Alphabets', 'b': 'Alphabets', 'a': 'Alphabets'}

Example 2: fromkeys() in python

x = ('key1', 'key2', 'key3')
y = 0

thisdict = dict.fromkeys(x, y)

    
print(thisdict)

//Output:{'key1': 0, 'key2': 0, 'key3': 0}