如何用Python3读写INI文件?
·
回答问题
我需要使用 Python3 读取、写入和创建一个 INI 文件。
文件.INI
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!!' )
UPDATED FILE.INI
default_path = "var/shared/"
default_file = "file.txt"
default_message = "Hey! help me!!"
Answers
这可以从以下内容开始:
import configparser
config = configparser.ConfigParser()
config.read('FILE.INI')
print(config['DEFAULT']['path']) # -> "/path/name/"
config['DEFAULT']['path'] = '/var/shared/' # update
config['DEFAULT']['default_message'] = 'Hey! help me!!' # create
with open('FILE.INI', 'w') as configfile: # save
config.write(configfile)
您可以在官方 configparser 文档中找到更多信息。
更多推荐
所有评论(0)