标签:ref import tar 最小 instance port str min() 类型转换
http://docs.python.org/3/library/functions.html#abs
# 求任意个参数最小值
min()
# 求任意个参数最大值
max()
# 将整数转换为十六进制
hex()
# 类型转换
int()
float()
bool()
str()
# 求绝对值
abs()
len()
type()
isinstance(a,type)
# 计算x的y次方
import math
math.pow(x,y)
# 开方
math.sqrt()
标签:ref import tar 最小 instance port str min() 类型转换
原文地址:https://www.cnblogs.com/cucumbermongo/p/10331343.html