從一個list中,選出n個不重複的項目: ```python import random random.sample(seq, n) ``` 不像 [[choices()]] 是會重複的。