【python】4章課題
質問
お世話になっております。
pythonの4章課題のコードについて質問があります。コードや出力結果に間違いはないように思えるのですが、課題が正解になりません。そのため、次の章に進めず困っております。どこが間違っているかご教授願いたいです。よろしくお願いいたします。(ちなみに、課題が正解していてもタイムラグがあるということはありますか?)
以下が4章課題のコードと出力結果です。
#商品合計金額
product_total = 138000 + (12800 * 2) + (253 *7)
#割引金額
discount = round(product_total *0.1)
#小計
sub_total = product_total – discount
#消費税(10%)
tax = round(sub_total *0.1)
#合計金額
total = sub_total + tax
print(‘商品合計金額: {0}円’.format(product_total))
print(‘割引金額: {0}円’ .format(discount))
print(‘小計: {0}円’ .format(sub_total))
print(‘—-‘)
print(‘消費税: {0}円’ .format(tax))
print(‘合計: {0}円’ .format(total))
商品合計金額: 165371円
割引金額: 16537円 小
計: 148834円
—-
消費税: 14883円
合計: 163717円
回答 ( 1 )
コードは問題ありませんのでそのまま次へ進んで頂ければと思います。
よろしくお願いいたします。