python 读取ini文件内容

1 import configparser
2 cfgini = "D:\\123.ini"
3 conf = configparser.ConfigParser()
4 conf.read(cfgini)
5 print(conf.get("SaveData","fileSavePath"))

 

posted @ 2020-10-28 14:22  菜鸟要飞~  Views(168)  Comments(0Edit  收藏  举报