SUPPORT UKRAINE
- Your indifference to the act of cruelty can thrive rogue nations like Russia -
タグ
random
を含むブログ一覧
1
Python Cookbook [Picking Things at Random : random の活用]
Published 2020年4月13日19:58 by mootaro23
# Problem:
# シーケンスからランダムに要素を取り出したり、乱数を発生させたい。
# Solution:
# random モジュールには様々な関数が用意されています。
# シーケンスからランダムに要素を取り出します。
import random
values = ['Nana', 'Saki', 'Hana', 'Yuka', 'Megu', 'Eri', '…
1