Loading

摘要: 1. 随机选择 使用random包 从列表里随机选出一个元素 from random import choice ls = [1, 2, 3, 4] print(choice(ls)) 2. 随机抽样 从列表里随机抽出出一组元素,不放回抽样 import random ls = [1, 2, 3, 阅读全文
posted @ 2021-05-25 12:41 Guang'Jun 阅读(136) 评论(0) 推荐(0) 编辑