如何更改键"current_date"
的值。我用months[month].update({current_date: int(minute)})
尝试过,但这只给了我一本新字典,而没有改变我的旧字典。那么如何增加时间,例如60分钟?
Current Dictionary
months = {"January":{"current_date": 60}}
Update Dictionary
months = {"January":{"current_date": 120}}
如果这个问题已经被问到了,我很抱歉,但是我根本找不到解决方法...
最佳答案
我希望这是您要寻找的:
months = {"January":{"current_date": 60}} #initializing
months["January"]["current_date"] = 120 #updating
要增加60分钟:
months = {"January":{"current_date": 60}}
months["January"]["current_date"] = months["January"]["current_date"] + 60
或更有效:
months = {"January":{"current_date": 60}}
months["January"]["current_date"] += 60
关于python - 如何在字典中更改字典中键的值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53135367/