列表中的随机元素

从列表中返回一个随机元素。

  • 使用random.choice()lst中获取一个随机元素。
from random import choice

def sample(lst):
  return choice(lst)

sample([3, 7, 9, 11]) # 9