choice 和 sample python中 choice() 方法返回一个列表,元组或字符串的随机项 a = [1, 2, 3, 4, 5, 6, 7, 8, 9] b = random.sample(a, 5) 从列表a中产生5个随机 数