python 目次 - ray88’s diary
■ random モジュールの choice( ) を使用する
import random #リストを設定する fruits = ["apple","orange","banana","peach"] #要素からランダムに1つ抽出 for i in range(3): dessert = random.choice(fruits) print("デザートは:",dessert)
python 目次 - ray88’s diary
■ random モジュールの choice( ) を使用する
import random #リストを設定する fruits = ["apple","orange","banana","peach"] #要素からランダムに1つ抽出 for i in range(3): dessert = random.choice(fruits) print("デザートは:",dessert)