格式化输出

一、输出整数

用法 描述 code 输出
%o oct 八进制 print('%o' % 20) 24
%d dec 十进制 print('%d' % 20) 20
%x hex 十六进制 print('%x' % 20) 14

二、输出浮点数

  1. % 用法
用法 描述
%f 保留小数点后面六位有效数字
%e 保留小数点后面六位有效数字,指数形式输出
%g 在保证六位有效数字的前提下,使用小数方式,否则使用科学计数法
>>> print('%f' % 1.11)  # 默认保留6位小数
1.110000
>>> print('%.1f' % 1.11)  # 取1位小数
1.1
>>> print('%e' % 1.11)  # 默认6位小数,用科学计数法
1.110000e+00
>>> print('%.3e' % 1.11)  # 取3位小数,用科学计数法
1.110e+00
>>> print('%g' % 1111.1111)  # 默认6位有效数字
1111.11
>>> print('%.7g' % 1111.1111)  # 取7位有效数字
1111.111
>>> print('%.2g' % 1111.1111)  # 取2位有效数字,自动转换为科学计数法
1.1e+03
  1. round()函数

round() 方法返回浮点数x的四舍五入值,但会因为版本和计算机中存储的浮点数精度的问题,产生不同的结果
原文地址

三、输出字符串

用法 描述
%s 输出字符串
%10s 右对齐,占位符10位
%-10s 左对齐,占位符10位
%.2s 截取2位字符串
%10.2s 10位占位符,截取两位字符串
>>> print('%s' % 'hello world')  # 字符串输出
hello world
>>> print('%20s' % 'hello world')  # 右对齐,取20位,不够则补位
         hello world
>>> print('%-20s' % 'hello world')  # 左对齐,取20位,不够则补位
hello world         
>>> print('%.2s' % 'hello world')  # 取2位
he
>>> print('%10.2s' % 'hello world')  # 右对齐,取2位
        he
>>> print('%-10.2s' % 'hello world')  # 左对齐,取2位
he

四、转义字符

格式化输出_第1张图片

五、format函数

参考

六、其他用法

参考

你可能感兴趣的:(格式化输出)