注意(2020年10月):
从v3.9开始,Python正式弃用
random.sample()了集合,官方指导是在传入之前将集合显式转换为列表或元组。
>>> random.sample(set('abcdefghijklmnopqrstuvwxyz'), 1)['f']文档:https :
//docs.python.org/3/library/random.html#random.sample

注意(2020年10月):
从v3.9开始,Python正式弃用
random.sample()了集合,官方指导是在传入之前将集合显式转换为列表或元组。
>>> random.sample(set('abcdefghijklmnopqrstuvwxyz'), 1)['f']文档:https :
//docs.python.org/3/library/random.html#random.sample