本文主要是介绍python hex() oct() bin() 内置函数,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
说明:
>>> help(hex)
Help on built-in function hex in module __builtin__:
hex(...)hex(number) -> stringReturn the hexadecimal representation of an integer or long integer.
>>> help(oct)
Help on built-in function oct in module __builtin__:
oct(...)oct(number) -> stringReturn the octal representation of an integer or long integer.
>>> help(bin)
Help on built-in function bin in module __builtin__:
bin(...)bin(number) -> stringReturn the binary representation of an integer or long integer.
>>>
示例:
print hex(20),hex(-20) #转换成十六进制
print oct(20),oct(-20) #转换成八进制
print bin(20),bin(-20) #转换成二进制
结果:
0x14 -0x14
024 -024
0b10100 -0b10100
这篇关于python hex() oct() bin() 内置函数的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!