7

我正在尝试将字典的内容写入(然后读入)到 ConfigParser,并且我相信我根据文档正确地执行了此操作,但似乎无法使其正常工作。有人可以帮忙吗?

import ConfigParser
parser = ConfigParser.ConfigParser()

parser['User_Info'] = {"User1-votes":"36","User1-gamestart":"13232323","User2-votes":"36","User2-gamestart":"234234234","User3-votes":"36","User3-gamestart":"13232323"}

Traceback (most recent call last):   File "<stdin>", line 1, in
<module> AttributeError: ConfigParser instance has no attribute '__setitem__'

我正在寻找的是有一个我可以更新的字典,最后写入一个配置文件,所以它看起来像:

[User_Info]
User1-gamestart = 13232323
User3-votes = 36
User2-votes = 36
User1-votes = 36
User2-gamestart = 234234234
User3-gamestart = 13232323
4

1 回答 1

8

您正在阅读 python 3.4 的文档,但您可能使用的是较旧版本的 python。

以下是如何在旧版本的 python 中使用 ConfigParser:

import ConfigParser
parser = ConfigParser.ConfigParser()

info = {"User1-votes":"36","User1-gamestart":"13232323","User2-votes":"36","User2-gamestart":"234234234","User3-votes":"36","User3-gamestart":"13232323"}

parser.add_section('User-Info')
for key in info.keys():
    parser.set('User-Info', key, info[key])

with open('config.ini', 'w') as f:
    parser.write(f)
于 2013-04-09T18:51:12.120 回答