工作中的一个小脚本
目的:用于修改配置文件setting.ini,新增一个新的配置项
import ConfigParser cf = ConfigParser.ConfigParser() filepath = ‘setting.ini‘ cf.read(filepath) for i in cf.sections(): cf.set(i,‘user‘, ‘test‘) with open(filepath, ‘wb‘) as configfile: cf.write(configfile)
本文出自 “运维小白” 博客,请务必保留此出处http://hironepiece.blog.51cto.com/12501442/1891023
原文地址:http://hironepiece.blog.51cto.com/12501442/1891023