1. 程式人生 > >python學習(4)--字符串格式化之format()方法

python學習(4)--字符串格式化之format()方法

light 網站 pytho com date 其中 格式化字符串 ont python

一、格式化字符串的函數 str.format()增強了字符串格式化的功能。通過 {} 和 : 來代替以前的 % 。

其中format 函數可以接受不限個參數,位置可以不按順序。

str = "{date}、{filename}、{func_name}、{msg}".format(
        date = "2018-10-07",                              # 時間
        filename = "test_farmat",   # 文件名
        msg = "content"                             # 內容
    )

二、向 str.format() 傳入對象:

file = "baidu"+".com"

str = "網站:{name}".format(name=file)
print (str)

  

python學習(4)--字符串格式化之format()方法