python字串格式化的方法整理

ldzsl發表於2021-09-11

python字串格式化的方法整理

1、format函式

format函式可以接受不限個數的引數,位置也可以不按順序。

format中的引數,對應{}的依次替換。

#例句:還有2天放假,我還在堅持學習Python
print("還有{}天放假,我還在堅持學習{}".format(2, "Python"))

2、%站位符方法

格式

%[(name)][flags][width].[precision]typecode
n1 = "i am %s age %d"%("hyj",26)
n2 = "i am %(name)s age %(age)d"%{"name":"hyj","age":26}
n3 = "i am 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/2325/viewspace-2830197/,如需轉載,請註明出處,否則將追究法律責任。

相關文章