rank | ▲ | ✰ | vote | url |
---|---|---|---|---|
48 | 432 | 75 | 793 | url |
在列表中随机取一个元素
例如我有如下列表:
foo = ['a', 'b', 'c', 'd', 'e']
从列表中随机取一个元素最好的方法是什么?
import random
foo = ['a', 'b', 'c', 'd', 'e']
print(random.choice(foo))
原文: https://taizilongxu.gitbooks.io/stackoverflow-about-python/content/48/README.html