如何使用Python3读写INI文件?

如何使用Python3读写INI文件?

我需要使用Python3 读取,写入和创建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!!' )

更新的 FILE.INI


default_path    = "var/shared/"

default_file    = "file.txt"

default_message = "Hey! help me!!"


BIG阳
浏览 681回答 3
3回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python