sample, choices: 從list中隨機選擇無重複的元素

profesor發表於2024-07-23

from random import sample
mylist = ['python', 'c++', 'html', 'CSS', 'JavaScript']
print(sample(mylist, k=4))

使用choices會有重複,而使用sample,則不會出現重複。

來源:https://stackoverflow.com/questions/70565925/how-to-disable-duplicated-items-in-random-choice

相關文章