Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 444 Bytes

64.md

File metadata and controls

24 lines (16 loc) · 444 Bytes
rank vote view answer url
64 1791 1428391 14 url

在列表中随机取一个元素

例如我有如下列表:

foo = ['a', 'b', 'c', 'd', 'e']

从列表中随机取一个元素最好的方法是什么?


import random

foo = ['a', 'b', 'c', 'd', 'e']
print(random.choice(foo))