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