我有一个获取 JSON 响应的 Python 脚本:import requestsimport jsonbitcoin_api_url = 'https://example.com'response = requests.get(bitcoin_api_url)response_json = response.json()print(response_json)结果:[{'id': 'bitcoin', 'name': 'Bitcoin', 'symbol': 'BTC', 'rank': '1', 'price_usd': '4068.19769898', 'price_btc': '1.0', '24h_volume_usd': '9967726932.86', 'market_cap_usd': '71664809254.0', 'available_supply': '17615862.0', 'total_supply': '17615862.0', 'max_supply': '21000000.0', 'percent_change_1h': '-0.42', 'percent_change_24h': '-0.01', 'percent_change_7d': '0.95', 'last_updated': '1553837126'}]如何使用 Python 从中提取值?例如,我想请求它'id'并得到'bitcoin'响应。
添加回答
举报
0/150
提交
取消