This is why you love Python? I'm not a fan of the fact that the function is named choice. 'Choice' implies intent. Randomness does not imply intent; quite the opposite. Ruby used to have a similar method (choice) but it is now deprecated in favor of sample, which is closer to what a statistician would say in common conversation. – David JamesAug 18 '11 at 4:54
16
Well, in idiomatic Python you would do import random and then random.choice(foo), which in my opinion is more clear than choice or sample. – thedayturnsAug 31 '11 at 4:18
9
@DavidJames Actually, sample implies and returns a population (more than one item) from a pool of data. choice implies selecting only one random item. – ausDec 7 '11 at 22:19