python读取ini文件
Posted 一分耕耘,一分收获!
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python读取ini文件相关的知识,希望对你有一定的参考价值。
import configparser import os config=configparser.ConfigParser()#创建config对象 file_path=os.path.dirname(os.path.abspath(‘.‘))+‘Python源码config.ini‘#读取文件父目录 config.read(file_path) sender=config.get(‘sender‘,‘sender‘)#读取ini配置文件中sender项中的sender值 print(file_path) print(sender)
config.ini文件:
[sender] sender = 666qq.com [receiver] receiver =8888qq.com
run结果:
C:UsersAdministratorDesktopPython源码config.ini 666qq.com
以上是关于python读取ini文件的主要内容,如果未能解决你的问题,请参考以下文章