Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
数字からランダムに選択する必要があります[1, 4, 7, 9, 13, 42]。
[1, 4, 7, 9, 13, 42]
random.randint(1,42)中間の数字が出てしまうので使えません。リスト内のそれらの番号のみから選択するにはどうすればよいですか?
random.randint(1,42)
あなたが欲しいrandom.choice。
random.choice
import random random.choice([1,4,7,9,13,42])
random.choice([1, 4, 7, 9, 13, 42])さらに調査を行ったところ、リストからランダムにアイテムを選択するを使用できることがわかりました。
random.choice([1, 4, 7, 9, 13, 42])