参考書に記載されているように勉強しているのですが、
以下のコードまででエラーが出てしまいます。
ご指摘、ご教授お願い致します。
python
1import requests 2import json 3↓ 4apikey = "&&&" 5↓ 6cities = ["London,UK", "Tokyo,JP", "New York,US"] 7↓ 8api = "https://home.openweathermap.org/data/2.5/weather?q={city}&APPID={key}" 9↓ 10for name in cities: 11 print("London,UK", "Tokyo,JP", "New York,US") 12↓ 13url = api.format(city=name, key=apikey) 14↓ 15r = requests.get(url)
エラーコード
python
1data = json.loads(r.text) 2↓ 3JSONDecodeError Traceback (most recent call last) 4<ipython-input-63-8048ba52a240> in <module> 5----> 1 data = json.loads(r.text) 6 7~/.pyenv/versions/3.8.0/lib/python3.8/json/__init__.py in loads(s, cls, object_hook, parse_float, parse_int, parse_constant, object_pairs_hook, **kw) 8 355 parse_int is None and parse_float is None and 9 356 parse_constant is None and object_pairs_hook is None and not kw): 10--> 357 return _default_decoder.decode(s) 11 358 if cls is None: 12 359 cls = JSONDecoder 13 14~/.pyenv/versions/3.8.0/lib/python3.8/json/decoder.py in decode(self, s, _w) 15 335 16 336 """ 17--> 337 obj, end = self.raw_decode(s, idx=_w(s, 0).end()) 18 338 end = _w(s, end).end() 19 339 if end != len(s): 20 21~/.pyenv/versions/3.8.0/lib/python3.8/json/decoder.py in raw_decode(self, s, idx) 22 353 obj, end = self.scan_once(s, idx) 23 354 except StopIteration as err: 24--> 355 raise JSONDecodeError("Expecting value", s, err.value) from None 25 356 return obj, end 26 27JSONDecodeError: Expecting value: line 1 column 1 (char 0)
*参考書 記載バージョンでは以下のように書かれています。
python
1#各都市の恩田を取得する 2for name in cities: 3 #APIのURLを得る 4 url = ^^^^^^^^^^^^^^^^^^^^ 5コード
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/10/27 07:02