ValueError: invalid literal for int() with base 10: ‘Relaxes’

【不具合内容】

Pythonで文字列を数値に変換する際に発生

int("Relaxes")

ValueError                                Traceback (most recent call last)
<ipython-input-33-c2824efd95f1> in <cell line: 1>()
----> 1 int("Relaxes")

ValueError: invalid literal for int() with base 10: 'Relaxes'

【原因】

数字以外の文字列は数値に変換できない

【解決方法】

数値変換する箇所に数字以外の文字列を入れないようにする。

コメントを残す

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

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

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