python">#!/usr/bin/python # -*- coding: iso-8859-1 -*- import ConfigParser # Open a configuration file config = ConfigParser.SafeConfigParser() config.read("config.ini") # Read the whole configuration file for section in config.sections(): print "In section %s" % section for (key, value) in config.items(section): print " Key %s has value %s" % (key, value)
python读取ini配置文件
最后更新 2018-05-17 08:00 星期四 所属:
Python教程 浏览:487