私はPythonで新しいですが、コードは以下返す保つ:サポートされていないオペランドのタイプ(複数可)のための+ = 'INT' と 'str' は
unsupported operand type(s) for +=: 'int' and 'str'
コード:
shopping_list = ["banana", "orange", "apple"]
stock = {
"banana": 6,
"apple": 0,
"orange": 32,
"pear": 15
}
prices = {
"banana": 4,
"apple": 2,
"orange": 1.5,
"pear": 3
}
# Write your code below!
def compute_bill(food):
total = 0
for number in food:
total += number
return total
compute_bill(['apple'])
[MCVE](/ help/mcve) –
こんにちはKasramvdを入力してください。 print compute_bill(food)のような関数を呼び出しても、エラーメッセージは表示されません。 – Mukky
'compute_bill'をどのように呼び出すことができますか? –