random dicts in python code example
Example: python random dictionary
dict = { 'A' : 1, 'A' : 2, 'A' : 3}
random_element = random.choice(list(dict.items())
# Output = (key, value)
dict = { 'A' : 1, 'A' : 2, 'A' : 3}
random_element = random.choice(list(dict.items())
# Output = (key, value)