python格式化输出

格式化输出,格式化整数和浮点数还可以指定是否补 0 和整数与小数的位数
1
2
print('%04d-%02d-%02d'%(17, 8, 26)) #2017-08-26
print('%.2f'%3.1415) # 小数点后保留两位