python storing list in dictionary code example
Example 1: python save list items to dictionary
'''
Converting a list to dictionary with list elements as keys in dictionary
All keys will have same value
'''
dictOfWords = { i : 5 for i in listOfStr }
Example 2: python dictionary with list
dictionary = {"one": [1, 2, 3, 4, 5], "two": "something"}
print(dictionary["one"][2])
3