前提・実現したいこと
pyhon・mathモジュール、requestsモジュールを使って、取り入れた情報を切り捨てする、というものを作っています。
どういうエラーなのかよく分からないので、エラーの内容、解決法などを教えてもらえれば嬉しいです。
発生している問題・エラーメッセージ
Traceback (most recent call last): File "C:\Users\12345\AppData\Local\Programs\Python\Python39\SDGs Distribution System.py", line 11, in <module> print(math.floor(geo_data)) TypeError: must be real number, not dict
該当のソースコード
python
1import requests 2import math 3 4geo_requests_url = 'https://get.geojs.io/v1/ip/geo.json' 5geo_data = requests.get(geo_requests_url).json() 6print(math.floor(geo_data))
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2021/09/26 05:00