Python通过format函数格式化显示值


Posted in Python onOctober 17, 2020

英文文档:

format(value[, format_spec])

Convert a value to a “formatted” representation, as controlled by format_spec. The interpretation of format_spec will depend on the type of the value argument, however there is a standard formatting syntax that is used by most built-in types: Format Specification Mini-Language.

The default format_spec is an empty string which usually gives the same effect as calling str(value).

A call to format(value, format_spec) is translated to type(value).__format__(value, format_spec) which bypasses the instance dictionary when searching for the value's __format__() method. A TypeError exception is raised if the method search reaches object and the format_spec is non-empty, or if either the format_spec or the return value are not strings.

格式化显示值

说明:

1. 函数功能将一个数值进行格式化显示。

2. 如果参数format_spec未提供,则和调用str(value)效果相同,转换成字符串格式化。

>>> format(3.1415936)
'3.1415936'
>>> str(3.1415926)
'3.1415926'

3. 对于不同的类型,参数format_spec可提供的值都不一样

#字符串可以提供的参数 's' None
>>> format('some string','s')
'some string'
>>> format('some string')
'some string'

#整形数值可以提供的参数有 'b' 'c' 'd' 'o' 'x' 'X' 'n' None
>>> format(3,'b') #转换成二进制
'11'
>>> format(97,'c') #转换unicode成字符
'a'
>>> format(11,'d') #转换成10进制
'11'
>>> format(11,'o') #转换成8进制
'13'
>>> format(11,'x') #转换成16进制 小写字母表示
'b'
>>> format(11,'X') #转换成16进制 大写字母表示
'B'
>>> format(11,'n') #和d一样
'11'
>>> format(11) #默认和d一样
'11'

#浮点数可以提供的参数有 'e' 'E' 'f' 'F' 'g' 'G' 'n' '%' None
>>> format(314159267,'e') #科学计数法,默认保留6位小数
'3.141593e+08'
>>> format(314159267,'0.2e') #科学计数法,指定保留2位小数
'3.14e+08'
>>> format(314159267,'0.2E') #科学计数法,指定保留2位小数,采用大写E表示
'3.14E+08'
>>> format(314159267,'f') #小数点计数法,默认保留6位小数
'314159267.000000'
>>> format(3.14159267000,'f') #小数点计数法,默认保留6位小数
'3.141593'
>>> format(3.14159267000,'0.8f') #小数点计数法,指定保留8位小数
'3.14159267'
>>> format(3.14159267000,'0.10f') #小数点计数法,指定保留10位小数
'3.1415926700'
>>> format(3.14e+1000000,'F') #小数点计数法,无穷大转换成大小字母
'INF'

#g的格式化比较特殊,假设p为格式中指定的保留小数位数,先尝试采用科学计数法格式化,得到幂指数exp,如果-4<=exp<p,则采用小数计数法,并保留p-1-exp位小数,否则按小数计数法计数,并按p-1保留小数位数
>>> format(0.00003141566,'.1g') #p=1,exp=-5 ==》 -4<=exp<p不成立,按科学计数法计数,保留0位小数点
'3e-05'
>>> format(0.00003141566,'.2g') #p=1,exp=-5 ==》 -4<=exp<p不成立,按科学计数法计数,保留1位小数点
'3.1e-05'
>>> format(0.00003141566,'.3g') #p=1,exp=-5 ==》 -4<=exp<p不成立,按科学计数法计数,保留2位小数点
'3.14e-05'
>>> format(0.00003141566,'.3G') #p=1,exp=-5 ==》 -4<=exp<p不成立,按科学计数法计数,保留0位小数点,E使用大写
'3.14E-05'
>>> format(3.1415926777,'.1g') #p=1,exp=0 ==》 -4<=exp<p成立,按小数计数法计数,保留0位小数点
'3'
>>> format(3.1415926777,'.2g') #p=1,exp=0 ==》 -4<=exp<p成立,按小数计数法计数,保留1位小数点
'3.1'
>>> format(3.1415926777,'.3g') #p=1,exp=0 ==》 -4<=exp<p成立,按小数计数法计数,保留2位小数点
'3.14'
>>> format(0.00003141566,'.1n') #和g相同
'3e-05'
>>> format(0.00003141566,'.3n') #和g相同
'3.14e-05'
>>> format(0.00003141566) #和g相同
'3.141566e-05'

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
改进Django中的表单的简单方法
Jul 17 Python
Python中的模块导入和读取键盘输入的方法
Oct 16 Python
Python通过matplotlib画双层饼图及环形图简单示例
Dec 15 Python
python安装twisted的问题解析
Aug 21 Python
Python中类的创建和实例化操作示例
Feb 27 Python
python使用threading.Condition交替打印两个字符
May 07 Python
python实现五子棋小程序
Jun 18 Python
Python3+Requests+Excel完整接口自动化测试框架的实现
Oct 11 Python
Python for i in range ()用法详解
Sep 18 Python
详解基于Jupyter notebooks采用sklearn库实现多元回归方程编程
Mar 25 Python
tensorflow模型的save与restore,及checkpoint中读取变量方式
May 26 Python
Python使用Matlab命令过程解析
Jun 04 Python
Python如何使用vars返回对象的属性列表
Oct 17 #Python
Python使用eval函数执行动态标表达式过程详解
Oct 17 #Python
Python基于locals返回作用域字典
Oct 17 #Python
Python classmethod装饰器原理及用法解析
Oct 17 #Python
Python基于staticmethod装饰器标示静态方法
Oct 17 #Python
详解python算法常用技巧与内置库
Oct 17 #Python
Python 操作SQLite数据库的示例
Oct 16 #Python
You might like
PHP分页函数代码(简单实用型)
2010/12/02 PHP
php导出csv数据在浏览器中输出提供下载或保存到文件的示例
2014/04/24 PHP
php计算多维数组中所有值总和的方法
2015/06/24 PHP
JSON 教程 json入门学习笔记
2020/09/22 Javascript
js操作时间(年-月-日 时-分-秒 星期几)
2010/06/20 Javascript
IE6-IE9不支持table.innerHTML的解决方法分享
2012/09/14 Javascript
jQuery实现id模糊查询的小例子
2013/03/19 Javascript
jquery 循环显示div的示例代码
2013/10/18 Javascript
jQuery使用元素属性attr赋值详解
2015/02/27 Javascript
JavaScript使用shift方法移除素组第一个元素实例分析
2015/04/06 Javascript
js上传图片及预览功能实例分析
2015/04/24 Javascript
基于JavaScript实现生成名片、链接等二维码
2015/09/20 Javascript
javascript实现3D切换焦点图
2015/10/16 Javascript
给before和after伪元素设置js效果的方法
2015/12/04 Javascript
详解vue-router基本使用
2017/04/18 Javascript
详解Node.js 命令行程序开发教程
2017/06/07 Javascript
webpack构建换肤功能的思路详解
2017/11/27 Javascript
Vue-Router的使用方法
2018/09/05 Javascript
Vue项目安装插件并保存
2019/01/28 Javascript
js实现登录拖拽窗口
2020/02/10 Javascript
Python Web服务器Tornado使用小结
2014/05/06 Python
python常见的格式化输出小结
2016/12/15 Python
python对配置文件.ini进行增删改查操作的方法示例
2017/07/28 Python
Python处理菜单消息操作示例【基于win32ui模块】
2018/05/09 Python
对python中基于tcp协议的通信(数据传输)实例讲解
2019/07/22 Python
canvas 基础之图像处理的使用
2020/04/10 HTML / CSS
送给他或她的礼物:FUN.com
2018/08/17 全球购物
数控专业大学生的自我鉴定
2013/11/13 职场文书
秘书英文求职信
2014/04/16 职场文书
气象学专业个人求职信
2014/04/22 职场文书
《永远的白衣战士》教学反思
2014/04/25 职场文书
2015年党支部公开承诺书
2015/01/22 职场文书
狂人日记读书笔记
2015/06/30 职场文书
公文写作:工伤事故分析报告怎么写?
2019/11/05 职场文书
python爬取企查查企业信息之selenium自动模拟登录企查查
2021/04/08 Python
MySQL 重命名表的操作方法及注意事项
2021/05/21 MySQL