Answers for "python 3 get random value from dict"

2

python random dictionary

dict = { 'A' : 1, 'A' : 2, 'A' : 3}

random_element = random.choice(list(dict.items())
# Output = (key, value)
Posted by: Guest on March-18-2020
0

how to choose a random key from a dictionary in python

('b', 2)
Posted by: Guest on December-18-2020

Code answers related to "python 3 get random value from dict"

Python Answers by Framework

Browse Popular Code Answers by Language