這篇文章主要介紹了Python字串格式化的方法(兩種) ,小編覺得挺不錯的,現在分享給大家,也給大家做個參考。一起跟著小編過來看看吧
本文介紹了Python字串格式化,主要有兩種方法,分享給大家,具體如下
用於字串的拼接,效能更優。
字串格式化有兩種方式:百分號方式、format方式。
百分號方式比較老,而format方式是比較先進的,企圖替代古老的方式,目前兩者共存。
1、百分號方式
格式:%[(name)][flags][width].[precision]typecode
(name) 可選,用於選擇指定的key
flags 可選,可選擇的數值為:
#>>> s = 'i am %s,age %d' %('cai',18)
>>> print(s)
i am cai,age 18
>>> s = 'i am %(n1)s,age %(n2)d' %{'n1':'cai','n2':18}
>>> print(s)
i am cai,age 18
>>> s = 'i am %(n1)+10s,age %(n2)d' %{'n1':'cai','n2':18}
>>> print(s)
i am cai,age 18
>>> s = 'i am %(n1)+10s,age %(n2)10d' %{'n1':'cai','n2':18}
>>> print(s)
i am cai,age 18
>>> s = "i am %.3f abcd" %1.2
>>> print(s)
i am 1.200 abcd
2、format方式、
i1 = "i am {},age {} ,{}".format('cairui',18,'kk') print(i1) i am cairui,age 18 ,kk i1 = "i am {0},age {1} ,{0}".format('cairui',18) print(i1) i am cairui,age 18 ,cairui i1 = "i am {name},age {age} ,{name}".format(name='cairui',age=18) print(i1) i am cairui,age 18 ,cairui i1 = "i am {:s},age {:d} ,{:f}".format('cairui',18,6.1) print(i1) i am cairui,age 18 ,6.100000
以上是Python字串格式化的方法介紹的詳細內容。更多資訊請關注PHP中文網其他相關文章!