通常,我编写如下代码以获取变量中的特定项目,如下所示
try:
config = ConfigParser.ConfigParser()
config.read(self.iniPathName)
except ConfigParser.MissingSectionHeaderError, e:
raise WrongIniFormatError(`e`)
try:
self.makeDB = config.get("DB","makeDB")
except ConfigParser.NoOptionError:
self.makeDB = 0
有没有办法读取python字典中的所有内容?
例如
[一个] x=1 y=2 z=3 [乙] x=1 y=2 z=3
被写入
val["A"]["x"] = 1 ... val["B"]["z"] = 3