python3学习记录3
1.保留小数
'%.2f’ % num 在Python2.x和3.x都可用
‘{0:.2f}’.format(num) 仅Python3.x可用
2f保留两位小数,四舍五入
a=1.12345
print('%.2f' % a) --》1.12
print('{:.2f}字符'.format(a)) -->1.12
2.format格式化函数
增强了字符串格式化的功能
"{} {}".format("hello", "world") # 不设置指定位置,按默认顺序
--》 'hello world'
"啊{0}哦 {1}".format("hello", "world") # 设置指定位置
--》 '啊hello哦 world'
3.不换行方法
print('不换行', end='')