vote up 3 vote down star
1

I currently have a Python set of n size where n >= 0. Is there a quick 1 or 2 lines Python solution to do it? For example, the set will look like:

fruits = set(['apple', 'orange', 'watermelon', 'grape'])

The goal is to pick 2 random items from the above and it's possible that the above set can contain 0, 1 or more items. The only way I can think of doing the above is to convert the set to a list(mutable) from where I can access 2 random unique index within the length of the set.

flag

how are you going to pick to items from 0- or 1-item list? – SilentGhost Aug 11 at 21:20
1  
The following should take care of that: import random vals = set([1, 2, 3, 4, 5, 6]) random.sample(vals, min(len(vals),2)) – Thierry Lam Aug 11 at 21:27

1 Answer

vote up 8 vote down check

Use the random module: http://docs.python.org/library/random.html

import random
random.sample([1, 2, 3, 4, 5, 6], 2)
link|flag
fasteeer, than the speed of light ;) – Stefano Borini Aug 11 at 21:15
1  
Wow, that looks simple, I'll have to check the random doc in more detail. – Thierry Lam Aug 11 at 21:17
and can be used with set as well – SilentGhost Aug 11 at 21:18

Your Answer

Get an OpenID
or

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