📜  python 如何从列表中随机选择一个项目 - Python 代码示例
📅  最后修改于: 2022-03-11 14:46:42.659000             🧑  作者: Mango
代码示例1
import random
nums = ['a', 'b', 'c', 'd', 'e']
print(random.choice(nums))