我必须读取文件的内容并使用字符串格式打印它们。目前我正在使用一个字典,其中键的值是一个列表,即嵌套在字典中的列表。
data={'Hour':[],'Total Incoming':[],'Pass':[],'Stale Client':[],'Error':[],'Exec time':[[],],'Update time':[[],]}
打印时我使用 for 循环
for i in range (0,len(data['Hour']-1):
print data['Hour'][i],data['Total Incoming'][i] and so on
我怀疑嵌套在列表中的字典是否比上面的更优化和更好
data=[{'Hour1':['Total Incoming','Pass','Stale Client','Error','Exec time'[],'Update time'[]]},{'Hour2':['Total Incoming','Pass','Stale Client','Error','Exec time'[],'Update time'[]]...}
你能在这方面帮助我吗