在數據展示中,format()
函數可以用來格式化字符串輸出,使得數據更易于閱讀和理解。以下是一些常見的應用場景:
num = 12.3456
print("Formatted Number: {:.2f}".format(num)) # 輸出:Formatted Number: 12.35
import datetime
now = datetime.datetime.now()
print("Current date and time: {:%Y-%m-%d %H:%M:%S}".format(now)) # 輸出:Current date and time: 2022-01-01 12:30:45
name = "John"
age = 30
print("Name: {}, Age: {}".format(name, age)) # 輸出:Name: John, Age: 30
person = {'name': 'Alice', 'age': 25}
print("Name: {name}, Age: {age}".format(**person)) # 輸出:Name: Alice, Age: 25
通過使用format()
函數,可以輕松地將不同類型的數據格式化成需要的形式,提高數據展示的可讀性和美觀性。