1、decimal: from decimal import * print(Decimal.from_float(12.222)) getcontext().prec=6 from decimal import * getcontext().prec = 6 Decimal(1)/Decimal(7) 2、quantize from decimal import * Decimal('50.5679').quantize(Decimal('0.00'))
结果为Decimal('50.57'),结果四舍五入保留了两位小数
3、转为str from decimal import * str(Decimal('3.40').quantize(Decimal('0.0'))) 4、fractions from fractions import Fraction
print(Fraction(3.5)) print(Fraction(5/6)) print(Fraction(5,6)) print(Fraction('5/6')) 5、fractions.Fraction.from_decimal(v) 6、random.randrange()
- random.randrange(10) 从0-9中取随机整数
- random.randrange(2,12) 从2-11中取随机整数
- random.randrange(0,10,2) 从0-9中取随机偶数 7、random.randint() random.randint(a,b)==>random.randrange(a,b 1) 8、random.choice(seq) 从序列中取一个值 9、random.shuffle() 重新排序序列 10 random.simple(population,k) 从序列中去K个值 11 浮点数:
- random.random() 返回一个左闭右开[0,1.0)区间的浮点数
- random.uniform(a,b) 返回一个左闭右开[a,b)区间的浮点数 12| math.pi math.e math.isinf() 是否无穷 math.trunc() math.floor() math.ceil() math.modf()返回小数和整数部分 frexp 返回尾数和指数
image.png math.fabs() 绝对值 math.copysign() 返回正确符号 math.pow(x,y) math.sqrt(9.0) math.log math.exp(2) e**2 math.degrees()