在 Python 中,格式化输出是一种非常有用的技术,它可以让我们以更清晰、更易读的方式展示数据。以下是一些关于 Python 格式化输出的高级技巧和代码示例:
- 使用占位符进行格式化
name = "Alice"
age = 25
print("My name is %s and I am %d years old." % (name, age))
在上述代码中,%s
表示字符串占位符,%d
表示整数占位符。
- 使用
format()
方法进行格式化
name = "Bob"
age = 30
print("My name is {} and I am {} years old.".format(name, age))
print("My name is {0} and I am {1} years old. I am also {1} years of experience in programming.".format(name, age))
format()
方法提供了一种更灵活的格式化方式,可以通过索引来指定参数的位置。
- 格式化浮点数
pi = 3.1415926
print("The value of pi is approximately {:.2f}".format(pi))
通过 {:.2f}
可以将浮点数保留两位小数进行输出。
- 对齐和填充
name = "Charlie"
print("|{:<10}|".format(name)) # 左对齐,宽度为 10
print("|{:>10}|".format(name)) # 右对齐,宽度为 10
print("|{:^10}|".format(name)) # 居中对齐,宽度为 10
print("|{:*^10}|".format(name)) # 居中对齐,并用 * 填充
可以使用 <
、>
、^
来指定对齐方式,并用指定的字符进行填充。
- 格式化日期和时间
from datetime import datetime
now = datetime.now()
print("Today is {:%Y-%m-%d %H:%M:%S}".format(now))
可以使用特定的格式代码来格式化日期和时间。
本文部分代码转自:https://www.wodianping.com/app/2024-10/50723.html