我需要读取,写入和创建一个INI使用Python3文件。
文件文件
default_path = "/path/name/"
default_file = "file.txt"
Python档案:
# Read file and and create if it not exists
config = iniFile( 'FILE.INI' )
# Get "default_path"
config.default_path
# Print (string)/path/name
print config.default_path
# Create or Update
config.append( 'default_path', 'var/shared/' )
config.append( 'default_message', 'Hey! help me!!' )
更新的 FILE.INI
default_path = "var/shared/"
default_file = "file.txt"
default_message = "Hey! help me!!"
5
docs.python.org/library/configparser.html怎么样?
—
程序员花了
正确的ini文件需要像这样的节标题
—
马丁·托马
[foobar]
。