当前位置:   article > 正文

python123平台作业答案进制转换_各种进制转换详解-python

python123进制转换

(1)各个进制的符号:b:二进制;o:八进制;d:十进制;x:十六进制

python中,bin(),oct(),hex()返回值均为字符串而且会带有0b,0o,0o前缀

70

(2)各个进制相互转换

a)十进制转换二进制:

70

十进制转换二进制:

#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)十进制转换八进制:

70

十进制转换到八进制

#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)十进制到十六进制:

70

(3)从二,八,十六进制到转换到十进制

a)二进制到十进制:

70

b)八进制到十进制

70

c)十六进制到十进制

70

总结:这里用到格式化字符串函数format;还有eval函数。各个进制之间转换比较灵活不要只局限上面的方法哦;还可以利用我们的公式来转换,或者借用十进制作为中介。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/392870
推荐阅读
相关标签
  

闽ICP备14008679号