Vous pouvez obtenir aléatoirement un élément d'un tableau en utilisant la fonction de choix du module aléatoire.
Cependant, notez que si le nombre d'éléments est égal à 0, une exception sera levée.
>>> import random
>>> random.choice(["hoge","fuga","piyo"])
'piyo'
>>> random.choice(["hoge","fuga","piyo"])
'fuga'
>>> random.choice([])
Traceback (most recent call last):
File "<input>", line 1, in <module>
File "/usr/lib64/python2.7/random.py", line 275, in choice
return seq[int(self.random() * len(seq))] # raises IndexError if seq is empty
IndexError: list index out of range
Recommended Posts