how to get random values of a dict code example
Example 1: how to choose a random key from a dictionary in python
entry_list = list(a_dict.items())
Example 2: how to choose a random key from a dictionary in python
print(a_dict)
entry_list = list(a_dict.items())
print(a_dict)