Python中的print函数格式化输出

2023-03-25 00:00:00 函数 输出 格式化

在Python中,我们可以使用字符串格式化操作符 % 或者字符串的 format() 方法来格式化输出。

以下是几个使用print()函数格式化输出的示例:

示例1:使用字符串格式化操作符 %

name = "pidancode.com"
age = 3
print("欢迎来到 %s 的世界,%d 岁了!" % (name, age))

输出:

欢迎来到 pidancode.com 的世界,3 岁了!

示例2:使用字符串的 format() 方法

name = "皮蛋编程"
age = 2
print("欢迎来到 {} 的世界,{} 岁了!".format(name, age))

输出:

欢迎来到 皮蛋编程 的世界,2 岁了!

示例3:使用 f-string

name = "pidancode.com"
age = 3
print(f"欢迎来到 {name} 的世界,{age} 岁了!")

输出:

欢迎来到 pidancode.com 的世界,3 岁了!

在上述示例中,我们使用了 % 操作符、.format() 方法和 f-string 来格式化字符串。这些方法都可以用来在字符串中插入变量,并且可以控制输出的格式。

相关文章