Python中的format函數用于格式化字符串。它可以將變量、表達式或指定的值插入到字符串中的占位符位置。
具體來說,format函數可以完成以下幾個功能:
例如,以下是一些使用format函數的示例:
# 字符串插值
name = "Alice"
age = 25
print("My name is {} and I'm {} years old.".format(name, age))
# 格式化數字
num = 12345.6789
print("The formatted number is: {:.2f}".format(num))
# 對齊文本
text = "Hello"
print("{:<10}".format(text)) # 左對齊
print("{:>10}".format(text)) # 右對齊
print("{:^10}".format(text)) # 居中對齊
# 格式化日期和時間
import datetime
now = datetime.datetime.now()
print("Today is: {:%Y-%m-%d}".format(now))
# 格式化對象
class Person:
def __init__(self, name, age):
self.name = name
self.age = age
def __format__(self, format_spec):
if format_spec == "summary":
return "{} is {} years old.".format(self.name, self.age)
else:
return str(self)
def __str__(self):
return self.name
person = Person("Bob", 30)
print("Person: {:summary}".format(person))
輸出結果:
My name is Alice and I'm 25 years old.
The formatted number is: 12345.68
Hello
Hello
Hello
Today is: 2022-01-01
Person: Bob is 30 years old.
總之,format函數是一個非常靈活和強大的字符串格式化工具,在Python中廣泛應用于字符串處理、日志記錄、文本報告等場景。