溫馨提示×

python format()函數(shù)在數(shù)據(jù)展示中的應(yīng)用

小樊
99
2024-08-21 08:06:29
欄目: 編程語言

在數(shù)據(jù)展示中,format()函數(shù)可以用來格式化字符串輸出,使得數(shù)據(jù)更易于閱讀和理解。以下是一些常見的應(yīng)用場景:

  1. 格式化數(shù)字輸出:
num = 12.3456
print("Formatted Number: {:.2f}".format(num))  # 輸出:Formatted Number: 12.35
  1. 格式化日期時間輸出:
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
  1. 格式化多個變量輸出:
name = "John"
age = 30
print("Name: {}, Age: {}".format(name, age))  # 輸出:Name: John, Age: 30
  1. 格式化字典輸出:
person = {'name': 'Alice', 'age': 25}
print("Name: {name}, Age: {age}".format(**person))  # 輸出:Name: Alice, Age: 25

通過使用format()函數(shù),可以輕松地將不同類型的數(shù)據(jù)格式化成需要的形式,提高數(shù)據(jù)展示的可讀性和美觀性。

0