Python计算账户金额的问题

我正在使用 requests 库用 Python 编写我的机器人。该机器人的本质是计算账户上所有物品的总金额。一切正常,但金额没有按照我的需要计算。


API 密钥作为字典:


apikeys = {'account1' : [id1, apikey1], 'account2' : [id2, apikey2], 'account3' : [id3, apikey3]}

我的代码:


total = 0

for 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 = 60

ACCOUNT2 = 40 + 50 + 60 = 150

ACCOUNT3 = 70 + 80 + 90 = 40


倚天杖
浏览 127回答 1
1回答

凤凰求蛊

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
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python