摘要: from random import sample mylist = ['python', 'c++', 'html', 'CSS', 'JavaScript'] print(sample(mylist, k=4)) 使用choices会有重复,而使用sample,则不会出现重复。 来源:https 阅读全文
posted @ 2024-07-23 18:38 profesor 阅读(11) 评论(0) 推荐(0) 编辑