More than 3 years have passed since last update.
コード
foo.py
id = 001
hoge = "https://app.rakuten.co.jp/services/api/?format=json&itemCode="+sc+
"%3A"+ii+"&shopCode="+sc
print(hoge)
実行結果
Bad operand type for unary +: 'str'
エラー原因
- hoge に改行が入っている。
- hoge が2行になっている。
対処法
foo.py
id = 001
hoge = "https://app.rakuten.co.jp/services/api/?format=json&itemCode="+sc+"%3A"+ii+"&shopCode="+sc
print(hoge)
Why not register and get more from Qiita?
- We will deliver articles that match you
By following users and tags, you can catch up information on technical fields that you are interested in as a whole
- you can read useful information later efficiently
By "stocking" the articles you like, you can search right away
Sign upLogin