Python内置函数bin() oct()等实现进制转换


Posted in Python onDecember 30, 2012

使用Python内置函数:bin()、oct()、int()、hex()可实现进制转换。
先看Python官方文档中对这几个内置函数的描述:
bin(x)
Convert an integer number to a binary string. The result is a valid Python expression. If x is not a Python int object, it has to define an __index__() method that returns an integer.
oct(x)
Convert an integer number to an octal string. The result is a valid Python expression. If x is not a Python int object, it has to define an __index__() method that returns an integer.
int([number | string[, base]])
Convert a number or string to an integer. If no arguments are given, return 0. If a number is given, return number.__int__(). Conversion of floating point numbers to integers truncates towards zero. A string must be a base-radix integer literal optionally preceded by ‘+' or ‘-‘ (with no space in between) and optionally surrounded by whitespace. A base-n literal consists of the digits 0 to n-1, with ‘a' to ‘z' (or ‘A' to ‘Z') having values 10 to 35. The default base is 10. The allowed values are 0 and 2-36. Base-2, -8, and -16 literals can be optionally prefixed with 0b/0B, 0o/0O, or 0x/0X, as with integer literals in code. Base 0 means to interpret exactly as a code literal, so that the actual base is 2, 8, 10, or 16, and so that int('010', 0) is not legal, while int('010') is, as well as int('010', 8).
hex(x)
Convert an integer number to a hexadecimal string. The result is a valid Python expression. If x is not a Python int object, it has to define an __index__() method that returns an integer.

2进制 8进制 10进制 16进制
2进制 - bin(int(x, 8)) bin(int(x, 10)) bin(int(x, 16))
8进制 oct(int(x, 2)) - oct(int(x, 10)) oct(int(x, 16))
10进制 int(x, 2) int(x, 8) - int(x, 16)
16进制 hex(int(x, 2)) hex(int(x, 8)) hex(int(x, 10)) -

bin()、oct()、hex()的返回值均为字符串,且分别带有0b、0o、0x前缀。
Python 相关文章推荐
Flask入门教程实例:搭建一个静态博客
Mar 27 Python
Python简单调用MySQL存储过程并获得返回值的方法
Jul 20 Python
在Python的Django框架中编写错误提示页面
Jul 22 Python
python机器学习实战之树回归详解
Dec 20 Python
pandas 将索引值相加的方法
Nov 15 Python
python退出命令是什么?详解python退出方法
Dec 10 Python
Python基础教程之if判断,while循环,循环嵌套
Apr 25 Python
django做form表单的数据验证过程详解
Jul 26 Python
Python 保持登录状态进行接口测试的方法示例
Aug 06 Python
postman和python mock测试过程图解
Feb 22 Python
4款Python 类型检查工具,你选择哪个呢?
Oct 30 Python
Django框架中视图的用法
Jun 10 Python
python的id()函数解密过程
Dec 25 #Python
python cookielib 登录人人网的实现代码
Dec 19 #Python
python 多线程应用介绍
Dec 19 #Python
Python多线程学习资料
Dec 19 #Python
python搭建简易服务器分析与实现
Dec 15 #Python
Python笔记(叁)继续学习
Oct 24 #Python
python笔记(2)
Oct 24 #Python
You might like
php自动加载机制的深入分析
2013/06/08 PHP
Symfony2在Nginx下的配置方法图文教程
2016/02/04 PHP
PHP实现基于栈的后缀表达式求值功能
2017/11/10 PHP
JQuery1.4+ Ajax IE8 内存泄漏问题
2010/10/15 Javascript
jquery实现图片等比例缩放以及max-width在ie中不兼容解决
2013/03/21 Javascript
jquery 层次选择器siblings与nextAll的区别介绍
2013/08/02 Javascript
JS在可编辑的div中的光标位置插入内容的方法
2014/11/20 Javascript
jQuery中:password选择器用法实例
2015/01/03 Javascript
javascript实现图片轮播效果
2016/01/20 Javascript
Jq通过td获取同行其它列td的方法
2016/10/05 Javascript
简单理解vue中实例属性vm.$els
2016/12/01 Javascript
Angular实现响应式表单
2017/08/04 Javascript
对vuejs的v-for遍历、v-bind动态改变值、v-if进行判断的实例讲解
2018/08/27 Javascript
详解js获取video任意时间的画面截图
2019/04/17 Javascript
js实现简单的打印表格
2020/01/15 Javascript
JavaScript实现商品评价五星好评
2020/11/30 Javascript
[01:03:59]2018DOTA2亚洲邀请赛3月30日 小组赛B组VGJ.T VS Secret
2018/03/31 DOTA
使用PYTHON接收多播数据的代码
2012/03/01 Python
Python利用IPython提高开发效率
2016/08/10 Python
Python+Wordpress制作小说站
2017/04/14 Python
Django使用Mysql数据库已经存在的数据表方法
2018/05/27 Python
python中时间模块的基本使用教程
2019/05/14 Python
python多进程下的生产者和消费者模型
2020/05/07 Python
Pytorch上下采样函数--interpolate用法
2020/07/07 Python
Python爬虫分析微博热搜关键词的实现代码
2021/02/22 Python
CSS3实现王者荣耀匹配人员加载页面的方法
2019/04/16 HTML / CSS
html5 Canvas画图教程(3)—canvas出现1像素线条模糊不清的原因
2013/01/09 HTML / CSS
HTML5移动端开发中的Viewport标签及相关CSS用法解析
2016/04/15 HTML / CSS
Html5实现用户注册自动校验功能实例代码
2016/05/24 HTML / CSS
增值税发票丢失证明
2015/06/19 职场文书
2016年万圣节家长开放日活动总结
2016/04/05 职场文书
2019年公司卫生管理制度样本
2019/08/21 职场文书
python第三方网页解析器 lxml 扩展库与 xpath 的使用方法
2021/04/06 Python
CSS font-variation 可变字体的魅力(实例详解)
2022/03/03 HTML / CSS
德生BCL3000抢先使用感受和评价
2022/04/07 无线电
Linux下使用C语言代码搭建一个简单的HTTP服务器
2022/04/13 Servers