溫馨提示×

python中print格式化輸出的方法是什么

小億
144
2024-03-21 20:06:50
欄目: 編程語言

Python中print函數(shù)的格式化輸出可以通過占位符的方式實現(xiàn)。常用的占位符有:

  • %s:字符串
  • %d:整數(shù)
  • %f:浮點數(shù)

示例如下:

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.")

0