python hex() oct() bin() math 内置函数
Posted 龙昊雪
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python hex() oct() bin() math 内置函数相关的知识,希望对你有一定的参考价值。
示例:
print hex(20),hex(-20) #转换成十六进制 print oct(20),oct(-20) #转换成八进制 print bin(20),bin(-20) #转换成二进制 print int("字面值", 进制) #转换整型 print float("字面值") #转换浮点型 print round(浮点型) #浮点型四舍五入
math方法:
math.pi = π 值3.141592653
math.pow(2,4) = 16 2的4次方
math.sqrt(144) = 12 144开平方=12
以上是关于python hex() oct() bin() math 内置函数的主要内容,如果未能解决你的问题,请参考以下文章