列表中的随机元素
从列表中返回一个随机元素。
- 使用
random.choice()
从lst
中获取一个随机元素。
from random import choice
def sample(lst):
return choice(lst)
sample([3, 7, 9, 11]) # 9
从列表中返回一个随机元素。
random.choice()
从lst
中获取一个随机元素。from random import choice
def sample(lst):
return choice(lst)
sample([3, 7, 9, 11]) # 9