Taceback (most recent call last):
File “pyl.py”, line 8, in <module>
total=total + donation.strip()
TypeError: unsupported operand type(s) for +: ‘int’ and ‘str ’
for の後がエラー
int数値 str文字列が一緒になっているよとのこと
Taceback (most recent call last):
File “pyl.py”, line 8, in <module>
total=total + donation.strip()
TypeError: unsupported operand type(s) for +: ‘int’ and ‘str ’
for の後がエラー
int数値 str文字列が一緒になっているよとのこと
コメント