#當然、可以用命名參數(shù)替換
a = "{x},{y}".format(x=6,y=1)
print(a)
2.使用%實現(xiàn)的字符串格式化:
#另外一種格式化使用%實現(xiàn)
s = 'hello,%s' % 'Ms zhao'
print(s)
s='hi,%s,How much is your car? $%d.' %('Mr chen',10000000)
#%d代表使用整數(shù)替換,%s使用字符串替換 有幾個%恳啥?占位符偏灿,后面就跟幾個變量或者值!若只有一個%钝的?翁垂,括號可以省略
print(s)