Python(sample函数)
sample(序列a,n)
功能:从序列a中随机抽取n个元素,并将n个元素生以list形式返回。
【Python(sample函数)】例:
-
from random import randint, sample date = [randint(10,20) for _ in range(10)] c = sample(date, 5) print(c) # 输出:[12, 17, 10, 12, 17]
- randint(10,20) for _ in range(10):从10~20间随机抽取10个数;
推荐阅读
- python学习之|python学习之 实现QQ自动发送消息
- 逻辑回归的理解与python示例
- 一起来学习C语言的字符串转换函数
- C语言字符函数中的isalnum()和iscntrl()你都知道吗
- C语言浮点函数中的modf和fmod详解
- python自定义封装带颜色的logging模块
- C语言中的时间函数clock()和time()你都了解吗
- 【Leetcode/Python】001-Two|【Leetcode/Python】001-Two Sum
- Python基础|Python基础 - 练习1
- Python爬虫|Python爬虫 --- 1.4 正则表达式(re库)