格式化输出
- 1. 格式化输出浮点数
- 2. 格式化输出整数
- 3. 格式化输出浮点数
- 4. 格式化输出百分号%
变量的格式化输出:input函数将信息输出到控制台,实现变量和文字一起输出。
%格式化操作符,和不同的字符连用,%s 字符串,%d 十进制整数,%f 浮点数
**方法:**创建一个字符串,在需要输出变量的地方用%号占格,在整个字符串后加%变量名
1. 格式化输出浮点数
name=‘xiaoming’
print(‘我的名字叫:%s,请多多关照’ % name)
2. 格式化输出整数
%0xd 不满x位前面补零,超过x位的原样显示
student_no=112
print(‘我的学号是:%07d’ %student_no)
3. 格式化输出浮点数
%.xf 小数点后面显示x位
price=8.5
weight=7.5
money=price*weight
print(‘苹果的单价:%.2f元/斤,买了%f.3斤,一共要:%.4f元’%(price,weoight,money))
4. 格式化输出百分号%
scale=0.25
print(‘数据比例是%.2f%%’%(scale100)) # (scale100)不加小括号会造成字符串拼接100次