前言:写代码的过程中经常会遇到使用一些超级参数的情况,并且是多个文件或者类公用的一些超级参数, 如果用变量变量的话就需要每一个脚本都加一个变量,所以配置文件就尤其重要
pip3 install configparser
test.conf
[hello_1]
host=localhost
[hello_2]
name = xiaoshuaikun
id = 521
[]
用来对配置文件进行分组,等于号的两边便是key
和value
。"""import package u will use"""
from configparser import ConfigParser
cp = ConfigParser()
cp.read('test.conf')
a = cp.get("hello_1", "host")
print(a,type(a))
b = cp.get("hello_2","name")
print(b,type(b))
c = cp.getint("hello_2","id")
print(c,type(c))
localhost <class 'str'>
xiaoshuaikun <class 'str'>
521 <class 'int'>