25、pow()返回x的y次方,即x**y
import math print(math.pow(2,10))
26、radians()把角度x转换成弧度
import math print(math.radians(45))
27、sin()求x(x为弧度)的正弦值
import math print(math.sin(math.pi/4))
28、sqrt()求x的平方根
import math print(math.sqrt(256))
29、tan()返回x(x为弧度)的正切值
import math print(math.tan(math.pi/4))
30、trunc()返回x的整数部分
import math print(math.trunc(6.789))
31、总结:
a)、以上为【Python】常用的【math】函数,例如里面的gcd(x,y)求两个数的最大公约数就非常实用。还有其它的函数,在很多地方都充满了价值。
下篇内容:【程序员数学基础【六、枚举 区块链,虚拟币种、币包约束,内环版本】(Java版本)】:【https://blog.csdn.net/feng8403000/article/details/114214901】
万丈高楼平地起,程序员数学基础,从小学的【什么是数学】至【离散数学】(主要是图论)咱们一步步成长,共同加油。