标签:判断 int() class 结果 imp 函数 转换 python floor
import math
math.floor() -----向下取整
math.ceil() -----向上取整
math.pi 3.1415926
math.e 2.718281828459045
round() -----四舍六入五取偶
int() 等同于 // 取整
min(),max()
pow(x,y) ---- 等于x**y
类型判断
type()函数判断类型
isinstance(6,str) 返回布尔类型 ,
整型
浮点型
字符串
列表
字典
布尔型
bytes/bytearray
集合
标签:判断 int() class 结果 imp 函数 转换 python floor
原文地址:https://www.cnblogs.com/agsol/p/11492344.html