1、在与ChainMap起源密切相关的性能问题中,ConfigParser是其生活中的标准库模块。
ChainMap可以在模块中找到。该方法使用字符串模板作为参数,并允许在PEP292中更换字符串。输入字符串模板包含嵌入式标志符,以后可以用实际值更换:Templatestring。
>>>importstring >>>greeting="Hey$name,welcometo$place!" >>>template=string.Template(greeting) >>>template.substitute({"name":"Jane","place":"theWorld"}) 'HeyJane,welcometotheWorld!'
2、substitute()替换place提供的关键字参数值,而不是输入字典中的值。
在名称冲突中有效管理ChainMap输入值的优先级。
>>>importstring >>>greeting="Hey$name,welcometo$place!" >>>template=string.Template(greeting) >>>template.substitute( ...{"name":"Jane","place":"theWorld"}, ...place="RealPython" ...) 'HeyJane,welcometoRealPython!'
以上是python 后续使用ChainMap标准库,希望对大家有所帮助。更多Python学习指导:python基础教程
本文教程操作环境:windows7系统Python 3.9.1,DELL G3电脑。