python标准库有多强大(python ChainMap标准库的跟踪使用)
导读:1、在与ChainMap起源密切相关的性能问题中,ConfigParser是其生活中的标准库模块。...
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基础教程
创心域SEO版权声明:以上内容作者已申请原创保护,未经允许不得转载,侵权必究!授权事宜、对本内容有异议或投诉,敬请联系网站管理员,我们将尽快回复您,谢谢合作!