random関数を呼び出して、合計金額の変化を行なってみた。
import random
apple_price = 350 #リンゴの単価
apple_num = random.randint(1,20) #リンゴを買う数
print("リンゴの単価:" + str(apple_price) + "円")
print("リンゴの買う数:" + str(apple_num) + "個" )
total = apple_price * apple_num
print("合計の金額は:" + str(total) + "円です。")
import random
apple_price = 350 #リンゴの単価
apple_num = random.randint(1,20) #リンゴを買う数
print("リンゴの単価:" + str(apple_price) + "円")
print("リンゴの買う数:" + str(apple_num) + "個" )
total = apple_price * apple_num
print("合計の金額は:" + str(total) + "円です。")
0 件のコメント:
コメントを投稿