标签:style 八进制 str size 最大值 round 结果 min floor
import math
math.floor(2.5) :向下取整
math.ceil(2.5) :向上取整
x//y :结果为向下取整
round(x) : 四舍六入五去偶
x > 0.5: 入进一
x < 0.5:舍去小数
x = 0.5:取最近偶数
min() 求最小值
max() 求最大值
math.sqrt() 求根
bin() 二进制 :返回字符串
oct() 八进制 :返回字符串
hex() 十六进制 :返回字符串
math.pi 表示pi 3.1415926....
math.e 表示自然常数
isinstance(对象,类型) 返回布尔值
例子:isinstance(16,(int,str,bool)) 返回True
标签:style 八进制 str size 最大值 round 结果 min floor
原文地址:https://www.cnblogs.com/lovesix/p/11986585.html