Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I get a random pair from a dict? I'm making a game where you need to guess a capital of a country and I need questions to appear randomly.

The dict looks like {'VENEZUELA':'CARACAS'}

How can I do this?

share|improve this question

3 Answers

up vote 17 down vote accepted

One way would be:

import random
d = {'VENEZUELA':'CARACAS', 'CANADA','TORONTO'}
random.choice(d.keys())
share|improve this answer
15  
That will work in Python 2.x where d.keys() is a list, but it won't work in Python 3.x where d.keys() is an iterator. You should do random.choice(list(d.keys())) instead. – Duncan Feb 1 '11 at 9:42
5  
@Duncan: I can't wait till all the 3rd party libraries are Python 3.x compatible, so the Python questions don't need 2 answers for every question. – Gerrat Feb 1 '11 at 13:54
>>> import random
>>> d = dict(Venezuela = 1, Spain = 2, USA = 3, Italy = 4)
>>> random.choice(d.keys())
'Venezuela'
>>> random.choice(d.keys())
'USA'

By calling random.choice on the keys of the dictionary (the countries).

share|improve this answer

Since this is homework:

Check out random.sample() which will select and return a random element from an list. You can get a list of dictionary keys with dict.keys() and a list of dictionary values with dict.values().

share|improve this answer
3  
random.sample and random.choice can't work with iterators. They need to know the length of the sequence, which can't be determined from an iterator. – AFoglia Feb 1 '11 at 5:50
1  
no this is NOT homework i am writing it to help me with spanish. – tekknolagi Feb 1 '11 at 5:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.