当前位置:  编程技术>python

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

    来源: 互联网  发布时间:2014-09-04

    本文导语:  使用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 __ind...

使用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不使用print而直接输出二进制字符串
  • python3图片转换二进制存入mysql
  • 使用Python进行新浪微博的mid和url互相转换实例(10进制和62进制互算)
  • Python类的构造函数,析构函数以及垃圾回收机制详细介绍及代码举例
  • python中去空格函数的用法
  • Python函数默认参数和字典参数及可变参数(带星号参数)
  • 哪位大侠有python的win32com的api函数说明?
  • Python数组条件过滤filter函数使用示例
  • Python过滤函数filter()使用自定义函数过滤序列实例
  • Python使用函数默认值实现函数静态变量的方法
  • python回调函数的使用方法
  • Python的函数嵌套的使用方法
  • python中的一些类型转换函数小结
  • Python中apply函数的用法实例教程
  • python del()函数用法
  • python中使用enumerate函数遍历元素实例
  • 使用python实现strcmp函数功能示例
  • Python def函数的定义、使用及参数传递实现代码
  • python函数返回多个值的示例方法
  • Python 执行字符串表达式函数(eval exec execfile)
  • Python获取远程文件大小的函数代码分享
  • Python help()函数用法详解
  • python strip()函数 介绍
  • python的id()函数解密过程
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • Python3中内置类型bytes和str用法及byte和string之间各种编码转换
  • python基础教程之基本内置数据类型介绍
  • python内置映射类型(mapping type):dict哈希字典遍历方式及其它用法举例
  • 浅析python 内置字符串处理函数的使用方法
  • python中的内置函数getattr()介绍及示例
  • Python内置数据类型详解
  • Python内置的字符串处理函数整理
  • Python内置的字符串处理函数详细整理(覆盖日常所用)
  • Python入门及进阶笔记 Python 内置函数小结
  • Python GUI编程:tkinter实现一个窗口并居中代码
  • 让python同时兼容python2和python3的8个技巧分享
  • Python中实现json字符串和dict类型的互转
  • 使用setup.py安装python包和卸载python包的方法
  • python异常信息堆栈输出到日志文件
  • 不小心把linux自带的python卸载了,导致安装一个依赖原python的软件不能安装,请问该怎么办?
  • python下用os.execl执行centos下的系统时间同步命令ntpdate
  • python读取csv文件示例(python操作csv)
  • Python namedtuple对象json序列化/反序列化及对象恢复
  • python基础教程之python消息摘要算法使用示例
  • Python获取网页编码的方法及示例代码
  • 新手该如何学python怎么学好python?
  • Python异常模块traceback用法举例
  • 使用python删除nginx缓存文件示例(python文件操作)
  • python之平台独立的调试工具winpdb介绍
  • python学习手册中的python多态示例代码
  • 基于Python的Html/xml解析库Beautiful Soup 4.2.1发布
  • 请教:system("C:\python2.4\python.exe C:\aa.py");该语句有何错误?为什么运行界面一闪就消失了并且没有运行完,请给出正确语句!
  • 测试Python内部类型及type和isinstance用法区别
  • python版本的问题
  • Python namedtuple(命名元组)使用实例
  • Mac OS X10.9安装的Python2.7升级Python3.3步骤详解


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3