Answers for "get random value from dictionary"

2

pick random entry in dict python

from random import choice

dictionary[choice(list(dictionary.keys()))] # where "dictionary" is the label of, guess what, the variable holding a dictionary you want a random item from.
Posted by: Guest on February-17-2021
0

how to choose a random key from a dictionary in python

random_entry = random.choice(entry_list)
Posted by: Guest on December-18-2020

Code answers related to "get random value from dictionary"

Python Answers by Framework

Browse Popular Code Answers by Language