python 配置文件的使用_python使用配置文件过程详解

python使用配置文件过程详解

这篇文章主要介绍了python使用配置文件过程详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

通过配置文件将变量暴露给用户修改

标准库模块configparser,从而可在配置文件中使用标准格式。

必须使用[files]、[colors]等标题将配置文件分成几部分(section)。标题的名称可随便指定,但必须将它们用方括号括起。

$ cat area.ini

[numbers]

pi: 3.1415926535893971

[messages]

greeting: Welcome to the area calutation program!

question: plse enter the radius

result_message: The area is

使用python 读取他

from configparser import ConfigParser

CONFIGFILE = "area.ini"

config = ConfigParser()

#读取配置文件

config.read(CONFIGFILE)

print(config['messages'].get('greeting'))

radius = float(input(config['messages'].get('question') + ' '))

# 以空格结束以便接着在当前行打印:

print(config['messages'].get('result_message'),end=' ')

print(config['numbers'].getfloat('pi') * radius**2)

你可能感兴趣的:(python,配置文件的使用)