ConfigParserでHelloWorld

Python 3.8

コンフィグファイル

[TEST1]
msg = Hello World!

実行ファイル

import configparser

myconfig = configparser.ConfigParser()
myconfig.read('configfile.ini', encoding='utf-8')
print(myconfig['TEST1']['msg'])

実行結果

$ python test1.py
Hello World!

 

投稿日: