Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 424 Bytes

37 从一个序列中随机返回 n 个不同值的元素.md

File metadata and controls

14 lines (10 loc) · 424 Bytes

Python100

把Python知识点整理成100道习题,知识点来自两本书:Python基础教程(第3版)和流畅的Python,以后会定期加入更多的习题,大家帮忙点个赞哈,点赞越多,更新越快~

从一个序列中随机返回 n 个不同值的元素

用 random 中的 sample 方法

>>> import random
>>> t = (2020, 7, 3, 21, 48, 56, 4, 21, 0)
>>> random.sample(t, 2)
[56, 0]