标签:ice pytho 用法 mat format 格式 字符 form hello
1,基本用法
1,正常拼串
s1 = ‘%s aaa %s‘(‘alice‘,‘bob‘)
2.format
不带编号
s1 = ‘{} aaa {}‘
s1.format(‘hello‘,‘world‘)
带编号
s1 = ‘{1} aaaa {2} bbb {1}‘
s.format(‘hello‘,‘world‘)
hello aaaa world hello
命名
s1 = ‘{a} aaa {b} bbbb {a}‘
s.format(a=‘hello‘,b=‘world‘)
标签:ice pytho 用法 mat format 格式 字符 form hello
原文地址:https://www.cnblogs.com/yitiaodahe/p/9216675.html