首页 > 编程 > Python > 正文

Python编程之字符串模板(Template)用法实例分析

2020-01-04 17:02:44
字体:
来源:转载
供稿:网友

本文实例讲述了Python编程之字符串模板(Template)用法。分享给大家供大家参考,具体如下:

#coding=utf8'''''字符串格式化操作符,需要程序员明确转换类型参数,比如到底是转成字符串、整数还是其他什么类型。新式的字符串模板的优势是不用去记住所有相关细节,而是像shell风格的脚本语言里面那样使用美元符号($).由于新式的字符串引进Template对象,Template对象有两个方法:substitute()、safe_substitute()。substitute()更为严谨,在key缺少的情况下会报一个KeyError的异常。safe_substitute()在缺少key的情况下,直接原封不动的把字符串显示出来。'''#导入Template对象from string import Templatedef stringTemplate():  #创建一个Template实例tmp  tmp=Template("I have ${yuan} yuan,I can buy ${how} hotdog")  yuanList=[1,5,8,10,12,13]  for yu in yuanList:    #substitute()按照Template中string输出    #并给相应key赋值    Substitute= tmp.substitute(yuan=yu,how=yu)    print Substitute  print  for yu in yuanList:    #使用substitute函数缺少key值包KeyError    try:      lackHow= tmp.substitute(yuan=yu)      print lackHow      print    except KeyError,e:      print "substitute lack key ",e  print  for yu in yuanList:    #safe_substitute()在缺少key的情况下    #直接原封不动的把字符串显示出来。    safe_substitute= tmp.safe_substitute(yuan=yu)    print safe_substitute  print#调用stringTemplate函数stringTemplate()

运行结果:

Python,字符串模板,Template

 

希望本文所述对大家Python程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表