Answers for "random choice dictionary python"

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

random choice dictionary python

deck = {
    'King':10,
    'Queen':10,
    'Valete':10}

random.choice(list(deck.keys()))
Posted by: Guest on October-02-2021

Python Answers by Framework

Browse Popular Code Answers by Language