リストをランダムに並べ替えるには、
randomモジュールのshuffleメソッドで並べ替えができます。
サンプルコード
import random samples = [1, 2, 3, 4, 5] random.shuffle(samples) print(samples) # 例 => [3, 5, 2, 4, 1]
リストをランダムに並べ替えるには、
randomモジュールのshuffleメソッドで並べ替えができます。
サンプルコード
import random samples = [1, 2, 3, 4, 5] random.shuffle(samples) print(samples) # 例 => [3, 5, 2, 4, 1]