以下の実行時にエラー
test.py
NUM=100.00
print("TEST:" + NUM)
$ python test.py
TypeError: can only concatenate str (not "float") to str
strを加えて解決
test.py
NUM=100.00
print("TEST:" + str(NUM))
$ python test.py
TEST:100.00
Go to list of users who liked
More than 3 years have passed since last update.
以下の実行時にエラー
NUM=100.00
print("TEST:" + NUM)
$ python test.py
TypeError: can only concatenate str (not "float") to str
strを加えて解決
NUM=100.00
print("TEST:" + str(NUM))
$ python test.py
TEST:100.00
Register as a new user and use Qiita more conveniently
Go to list of users who liked