标签:factorial python 2.0 取绝对值 绝对值 3.1 log pre pytho
import math
print(math.trunc(3.485))#取整数
print(math.pow(3,4))#乘方
print(math.pi)
print(math.sqrt(100))#开方
print(math.log(10))#e为底,10的自然对数
print(math.log(10,3))#e为底,10的自然对数
3
81.0
3.141592653589793
10.0
2.302585092994046
2.095903274289385
import math
print(math.fmod(20,3))#取余
print(math.fsum([12,56,3,4]))#迭代器求和
print(math.factorial(5))#阶乘
print(math.fabs(-9.23))#取绝对值
print(math.exp(5))#e(2.71829)的5次方
2.0
75.0
120
9.23
148.4131591025766
标签:factorial python 2.0 取绝对值 绝对值 3.1 log pre pytho
原文地址:http://blog.51cto.com/13959448/2325950