Answers for "python choose random item in dictioanry"

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

python dict get random key

random.choice(list(my_dict))
Posted by: Guest on June-12-2020

Code answers related to "python choose random item in dictioanry"

Python Answers by Framework

Browse Popular Code Answers by Language