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