我正在使用 requests 库用 Python 编写我的机器人。该机器人的本质是计算账户上所有物品的总金额。一切正常,但金额没有按照我的需要计算。API 密钥作为字典:apikeys = {'account1' : [id1, apikey1], 'account2' : [id2, apikey2], 'account3' : [id3, apikey3]}我的代码:total = 0for key, value in apikeys.items(): url = request.get('https://market.com/api/items?=key={api}'.format(api=value[1])).json()['items'] for i in url: total += i['price'] JSON 答案:ACCOUNT1 = {'items': [ 'item 1': { 'status': '1', 'price': '10' }, 'item 2': { 'status': '1', 'price': '20' }, 'item 3': { 'status': '1', 'price': '30' }, ACCOUNT2 = {'items': [ 'item 1': { 'status': '1', 'price': '40' }, 'item 2': { 'status': '1', 'price': '50' }, 'item 3': { 'status': '1', 'price': '60' },ACCOUNT3 = {'items': [ 'item 1': { 'status': '1', 'price': '70' }, 'item 2': { 'status': '1', 'price': '80' }, 'item 3': { 'status': '1', 'price': '90' }, 我的机器人从我获得的所有帐户中收集所有物品, 总计 = 450 ( 10 + 20 + 30 + 40 + 50 + 60 + 70 + 80 + 90 = 450 )total = 450但我需要将每个帐户的金额分开:I need:ACCOUNT1 = 10 + 20 + 30 = 60ACCOUNT2 = 40 + 50 + 60 = 150ACCOUNT3 = 70 + 80 + 90 = 40
1 回答
凤凰求蛊
TA贡献1825条经验 获得超4个赞
account_total = {}
for key, value in apikeys.items():
url = request.get('https://market.com/api/items?key={api}'.format(api=value[1])).json()['items']
total = 0
for i in url:
total += i['price']
account_total[key] = total
添加回答
举报
0/150
提交
取消