python print格式化输出。

时间:2022-04-23 04:28:24

python print格式化输出。

1. 打印字符串

print ("His name is %s"%("Aviad"))

效果:
python print格式化输出。

2.打印整数

print ("He is %d years old"%(25))

效果:
python print格式化输出。

3.打印浮点数

print ("His height is %f m"%(1.83))

效果:
python print格式化输出。

4.打印浮点数(指定保留小数点位数)

print ("His height is %.2f m"%(1.83))

效果:
python print格式化输出。

5.指定占位符宽度

print ("Name:%10s Age:%8d Height:%8.2f"%("Aviad",25,1.83))

效果:
python print格式化输出。

6.指定占位符宽度(左对齐)

print ("Name:%-10s Age:%-8d Height:%-8.2f"%("Aviad",25,1.83))

效果:
python print格式化输出。

7.指定占位符(只能用0当占位符?)

print ("Name:%-10s Age:%08d Height:%08.2f"%("Aviad",25,1.83))

效果:
python print格式化输出。

8.科学计数法

format(0.0015,'.2e')

效果:

python print格式化输出。