试图将字典中的字典追加到列表python [关闭]

问题描述 投票:-1回答:1
class stores: def __init__(self,store, day, expense): self.store = store self.day = day self.expense = expense expanseTracker = [] def expSorter(self): expanseTracker.append({store:{day:expance}}) for item in expanseTracker: print(item)
尝试使用:def expSorter:将字典内的字典追加到列表:expanseTracker:

正在编写一个程序,以获取用户在巫婆节当天和当日用钱的商店的输入。 exp:{starbucks:{12/09/2019:$ 34.00}}。

我是编程新手,正在自己学习,有人可以指导我朝正确的方向发展。我肯定知道不应该使用.append,但是我没有编程词汇来了解更多。我真的很乐意提供帮助。(您认为值得买的任何不错的教科书都可以)[]

类商店:def __init __(自身,商店,日期,费用):self.store =商店self.day =日self.expense =费用expanseTracker = [] def expSorter(self):...

python dictionary append
1个回答
0
投票
© www.soinside.com 2019 - 2024. All rights reserved.