Python

Python リストの要素をランダムに選択

random.choice() で引数にリストを渡す。

サンプルコード

import random

list = [0, 1, 2, 3]
print(random.choice(list))