2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Python で [Bad operand type for unary +: 'str'] と出た場合の対処法

Posted at

コード

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)
2
3
3

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?