在Python中,format
是一個字符串方法,用于將變量插入到字符串中。它允許在字符串中創建占位符,然后使用參數的值替換這些占位符。
format
方法的基本語法是:
string.format(value1, value2, ...)
其中,string
是需要格式化的字符串,value1, value2, ...
是要插入到占位符中的值。
在字符串中,用一對花括號 {}
表示一個占位符。可以通過在花括號內指定索引位置或變量名來控制插入的值。
以下是一些format
方法的示例:
name = "Alice"
age = 25
# 基本用法
print("My name is {} and I am {} years old.".format(name, age))
# 輸出:My name is Alice and I am 25 years old.
# 指定占位符的索引位置
print("I am {1} years old and my name is {0}.".format(name, age))
# 輸出:I am 25 years old and my name is Alice.
# 指定占位符的變量名
print("My name is {n} and I am {a} years old.".format(n=name, a=age))
# 輸出:My name is Alice and I am 25 years old.
# 格式化數字
pi = 3.14159
print("The value of pi is {:.2f}".format(pi))
# 輸出:The value of pi is 3.14
format
方法還支持更高級的格式化選項,例如指定字段寬度、填充字符、對齊方式等。可以通過在占位符中使用冒號 :
來指定格式化選項。
總的來說,format
方法的作用是將變量插入到字符串中,使字符串更具靈活性和可讀性。