共计 325 个字符,预计需要花费 1 分钟才能阅读完成。
Python 中 print 函数的格式化输出可以通过占位符的方式实现。常用的占位符有:
- %s:字符串
- %d:整数
- %f:浮点数
示例如下:
name = "Alice"
age = 20
height = 1.65
print("Hello, my name is %s, I am %d years old and %.2f meters tall." % (name, age, height))
另外,Python3.6 及以上版本还支持使用 f 字符串进行格式化输出,示例如下:
name = "Alice"
age = 20
height = 1.65
print(f"Hello, my name is {name}, I am {age} years old and {height:.2f} meters tall.")
丸趣 TV 网 – 提供最优质的资源集合!
正文完