TypeError: can’t multiply sequence by non-int of type ‘str’

【不具合内容】

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

コメントを残す

* 印は必須項目です。メールアドレスは公開されません。

次のHTMLタグと属性を使用することができます: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

このサイトはスパムを低減するために Akismet を使っています。コメントデータの処理方法の詳細はこちらをご覧ください