各种进制转换详解-python

Posted laogao123

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了各种进制转换详解-python相关的知识,希望对你有一定的参考价值。


(1)各个进制的符号:b:二进制;o:八进制;d:十进制;x:十六进制
在python中,bin(),oct(),hex()返回值均为字符串而且会带有0b,0o,0o前缀
技术分享图片
(2)各个进制相互转换
a)十进制转换二进制:
技术分享图片
十进制转换二进制:

#coding=utf-8
s = 10
list_one = []
if s >= 0 and s <= 1:
    print "二进制:%d"%(s)
else:
    while s >= 1:
        list_one.append(str(s % 2))
        s = s / 2
    #list_one.append(str(s))
    list_one.reverse()
print ‘‘.join(list_one)

b)十进制转换八进制:
技术分享图片
十进制转换到八进制

#coding=utf-8
s = 10
list_one = []
if s >= 0 and s <= 1:
    print "二进制:%d"%(s)
else:
    while s >= 1:
        list_one.append(str(s % 8))
        s = s / 8
    #list_one.append(str(s))
    list_one.reverse()
print ‘‘.join(list_one)

c)十进制到十六进制:
技术分享图片
(3)从二,八,十六进制到转换到十进制
a)二进制到十进制:
技术分享图片
b)八进制到十进制
技术分享图片
c)十六进制到十进制
技术分享图片
总结:这里用到格式化字符串函数format;还有eval函数。各个进制之间转换比较灵活不要只局限上面的方法哦;还可以利用我们的公式来转换,或者借用十进制作为中介。

以上是关于各种进制转换详解-python的主要内容,如果未能解决你的问题,请参考以下文章

Python进制转换详解

在 Python 中将十六进制颜色代码转换为颜色名称

用Python内置函数轻松实现各种进制数之间的转换

python各种类型的转换

三:python 对象类型详解一:数字(上)

python3内置函数详解