configparser.ConfigParser.writer()
admin
2023-07-20 17:41:49
0
    ①
    write(fileobject, space_around_delimiters=True)

Write a representation of the configuration to the specified file object,which must be opened in text mode(accepting strings),This representation can ba parsed by a future read() call.if space_around_delimiters is true,delimiters between keys an values are surrounded by spaces.

config = configparser.Configparser()
must be opened in text mode (accept strings):只能使用text模式打开的文件才能被写入,with open('users.pkl', 'w') as f:
config.writer(f)

②
read(filenames, encoding=None)
            If filenames is a string or path-like object, it is treated as a single filename. If a file named in filenames cannot be opened, that file will be ignored. This is designed so that you can specify a list of potential configuration file locations (for example, the current directory, the user’s home directory, and some system-wide directory), and all existing configuration files in the list will be read.

If none of the named files exist, the ConfigParser instance will contain an empty dataset. An application which requires initial values to be loaded from a file should load the required file or files using read_file() before calling read() for any optional files:

    import configparser, os

config = configparser.ConfigParser()
config.read_file(open('defaults.cfg'))

相关内容

热门资讯

战争冲突没有赢家——美以伊战事... 新华社北京6月19日电(记者阚静文 马倩 刘赞)北京时间18日,美国和伊朗宣布远程签署谅解备忘录。数...
乌克兰发动最大规模袭击,“莫斯... 【文/观察者网 王一】当地时间6月18日,莫斯科上空被浓烟笼罩。综合美国《纽约时报》、美联社等外媒报...
特朗普的新专机,首次亮相 财联社6月20日讯(编辑 史正丞)综合CCTV国际时讯等媒体报道,特朗普心心念念许多年的新总统专机,...
日本宣布,7月1日起赴日签证费... 6月19日,日本外务大臣茂木敏充宣布,7月1日起,外国人单次入境签证和多次入境签证的费用将分别上涨至...
英国两列客运火车相撞,已致1死... 据英国警方证实,当地时间6月19日下午发生在英格兰地区贝德福德附近的客运列车相撞事故,已造成1人死亡...
技术攻关筑牢根基 解锁航运绿色... 来源:星沙时报 来源:人民网 走进上海海事大学综合机舱实验室,主机运转的低沉声浪扑面而来,集控室显示...
科技改变生活:这些黑科技正在重... 你可曾发觉, 十年之前科幻电影当中呈现出现的场景, 现如今乃是正逐个地走入现实之中? 清晨之际将你唤...
又一国家级重大产业工程,落地!... 来源:东北新闻网 国家级重大产业工程,中国首条、全球首批第8.6代AMOLED生产线17日在成都量产...
阿里旗下天猫精灵第一家数据产业... 走进威海临港区天猫精灵人工智能数据产业基地,数十名员工与高校实习生正紧盯屏幕,核对智能机器人执行"移...
中国4月持有美债降至18年来新... 【文/观察者网 王一】当地时间6月18日,美国财政部公布的最新数据显示,中国4月继续减持美国国债,持...