欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python 格式化输出%s %d 占位符的使用

程序员文章站 2024-03-15 15:15:54
...
# 打印字符串
print("This is %s Python Test"%"Lily's")

# 打印整数
print("%d*%d=%d" %(1,5,5))

# 打印浮点数
print("%f"%12.2345)

#  打印浮点数(指定保留小数点位数)
print("%.2f"%12.2345)

# 指定占位符宽度(左对齐)
print("This is %s Python Test"%"Lily's")
print("This is %-20s Python Test"%"Lily's")

# 指定占位符(只能用0当占位符)
print("My Name is%10s,Height:%5f,Age:%3d"%("Lily",168.0,27))
print("My Name is%010s,Height:%010.2f,Age:%08d"%("Lily",168.0,27))

# 科学计数法
print(format(0.185471545,'.2e'))

 

相关标签: Python