Python中格式化输出的方式有多种,其中常用的有以下三种:
字符串格式化操作符:使用%对字符串进行格式化,通过指定格式化字符来控制输出的样式。比较常见的格式化字符有:%s表示字符串、%d表示整数、%f表示浮点数等。
例如:
name = "John"
age = 25
score = 95.5
print("My name is %s, I'm %d years old, and my score is %.2f." % (name, age, score))
输出结果为:
My name is John, I'm 25 years old, and my score is 95.50.
str.format()方法:使用str.format()函数将值插入到字符串中。在花括号{}中可以使用字段名、位置索引、格式化字符等进行占位。
例如:
name = "John"
age = 25
score = 95.5
print("My name is {}, I'm {} years old, and my score is {:.2f}.".format(name, age, score))
输出结果为:
My name is John, I'm 25 years old, and my score is 95.50.
f-String:以字母f或F作为前缀,可以在字符串中直接使用表达式来格式化输出,非常方便。
例如:
name = "John"
age = 25
score = 95.5
print(f"My name is {name}, I'm {age} years old, and my score is {score:.2f}.")
输出结果为:
My name is John, I'm 25 years old, and my score is 95.50.
需要注意的是,以上三种方式在实现上都有所不同,具体使用时需要根据场景和个人喜好进行选择和调整。