Python2.6 開始,新增了一種格式化字串的函數 str.format(),它增強了字串格式化的功能。
基本語法是透過 {} 和 : 來取代先前的 % 。
format函數可以接受不限個參數,位置可以不依序。
實例
>>>"{} {}".format("hello", "world") # 不设置指定位置,按默认顺序 'hello world' >>> "{0} {1}".format("hello", "world") # 设置指定位置 'hello world' >>> "{1} {0} {1}".format("hello", "world") # 设置指定位置 'world hello world'
相關推薦:《Python教學》
以上是format在python中是什麼意思的詳細內容。更多資訊請關注PHP中文網其他相關文章!