我是Python新手,目前我正在使用數據字典。 我希望創建詞典到字典是這樣的:Dict Python代碼
dates = {201101:{perf:10, reli:20, qos:300}, 201102:{perf:40, reli:0, qos:30}}
我已經有鑰匙,我必須初始化創建的默認值。即:
{201101:{perf:0, reli:0}, 201102:{perf:0, reli:0}}
怎麼辦發起和更新specifict字典。即日期[201101 [perf]] = 10。 謝謝!
什麼是'201101 {perf = 10,reli = 20,qos = 300}' – thefourtheye
@thefourtheye對不起我的錯誤 – indi60