码迷,mamicode.com
首页 > 编程语言 > 详细

python hex() oct() bin() math 内置函数

时间:2018-09-08 00:47:11      阅读:428      评论:0      收藏:0      [点我收藏+]

标签:code   hex   float   nbsp   bsp   size   内置函数   round   col   

示例:

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 内置函数

标签:code   hex   float   nbsp   bsp   size   内置函数   round   col   

原文地址:https://www.cnblogs.com/chen-lhx/p/9607626.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!