当前位置:天才代写 > tutorial > Python教程 > python读取ini配置文件

python读取ini配置文件

2018-05-17 08:00 星期四 所属: Python教程 浏览:484

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

 

    关键字:

天才代写-代写联系方式