目次
経緯
文字列を結合しようとしたら、
TypeError:can only concatenate str (not “int”) to str
と出ました。
実際のコマンド
number_int = 3 print('python' + number_int)
やったこと
number_intを文字列にする
Pythonでは文字列と数値を+演算子で結合できません。
なので、str()を使って、数値オブジェクトを文字列に変換しなければなりませんでした。
number_int = 3 print('python' + str(nubmer_int))
エラーは解消しました。