python string Template

收藏

 

from string import Template

 

def print_str(msg,date):

      template=Template(msg)

      str=template.substitute(date)

      print str

 

if __name__=='__main__':

      print_str('The key is ${key},The value is ${value}',{'key':'admin','value':'root'})

 

 

注意:

  1.msg='$key $value'时,注意字符串的格式,具体不详细说明

  2.template.safe_substitute可以去试一下

你可能感兴趣的:(Date,String,python,import)