我想读取具有注释行的INI格式的配置文件。当应用程序将配置写回文件时,我不想丢失这些行。
我该怎么做?
Python 3.6.5rc1 (default, Mar 14 2018, 06:54:23)
[GCC 7.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import configparser
>>> cfg = configparser.ConfigParser()
>>> cfg.read_string('''[DEFAULT]
... # comment
... parameter = 7''')
>>> f = open('my.conf', 'w')
>>> cfg.write(f)
>>> f.close()
>>>
$ cat my.conf
[DEFAULT]
parameter = 7