例如我有如下列表:
foo = ['a', 'b', 'c', 'd', 'e']
从列表中随机取一个元素最好的方法是什么?
import random foo = ['a', 'b', 'c', 'd', 'e'] print(random.choice(foo))