【不具合内容】
Pythonで文字列同士の乗算をした時に発生
"123" * "456"
TypeError Traceback (most recent call last)
<ipython-input-17-e785b559eedc> in <module>
----> 1 "123" * "456"
TypeError: can't multiply sequence by non-int of type 'str'
【原因】
Pythonで文字列同士の乗算はできない。
【解決方法】
・文字列の結合を行う場合は”+”演算子を使用する。
"123" + "456"
'123456'
・数値として計算したい場合は文字列を数値に変換した後に計算する
int("123") * int("456")
56088