xnpgofqfo
@xnpgofqfo

Are you sure you want to delete the question?

Leaving a resolved question undeleted may help others!

[Python] 計算ができません

状況

税抜価格から税込価格を求めるコードを書いてるのですが計算するところでつまずきます。
型変換したりしましたが上手く行きませんでした。

コード

a = input("入力してください。")
b = 1.08
sum = a * b
print(sum)

エラー

TypeError: can't multiply sequence by non-int of type 'float'

0

1Answer

Your answer might help someone💌