format格式化输出

数据输出格式化:
#保留一位小数输出
for i in range(1,20):
  print(i,"{.1f}".format(5*(i-32)/9))
#设置输出格式
s="字符串格式"
print("{0}".format(s))#默认格式化,字符串左对齐
print("{0:>30}".format(s))#最小宽度30 >表示右对齐<表示左对齐
print("{0;^30}".format(s))#最小宽度30 ^表示居中
print("{0:.2f}{1:.2f}".format(x,y))#0 和1 表示format函数中的第一和第二个参数

实现输出格式格式化化:

format格式化输出_第1张图片

你可能感兴趣的:(Python,蓝桥杯,c语言,c#)