import random
x=list(range(5))
# for i in range(5):
# print(random.choice(x))
# choice()选择一个
#Signature: random.choice(seq)
Docstring: Choose a random element from a non-empty sequence.
# choices()可以选择多个,指定k即可,返回列表,如果需要字符串可以''.join()
Signature: random.choices(population, weights=None, *, cum_weights=None, k=1)
Docstring:
Return a k sized list of population elements chosen with replacement.
#sample采样
print(random.sample(x,k=2))
线性表random模块
转载本文章为转载内容,我们尊重原作者对文章享有的著作权。如有内容错误或侵权问题,欢迎原作者联系我们进行内容更正或删除文章。
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
【数据结构】详细剖析线性表
【数据结构】第二章——线性表(9)总结了线性表的基本知识点,并对循序表与链表进行了比较
数据结构 C语言 线性表 顺序表 链表 -
线性表与非线性表p