立即学习:https://edu.csdn.net/course/play/26676/338773?utm_source=blogtoedu
标准库中math模块:引用:import math;
观察math模块中有多少函数:dir(math);
调用math中的lpow函数:math.pow(2,3) ---8;
注意数值运算浮点数的溢出;
math.pi为圆周率;
round()进行四舍五入;
立即学习:https://edu.csdn.net/course/play/26676/338773?utm_source=blogtoedu
标准库中math模块:引用:import math;
观察math模块中有多少函数:dir(math);
调用math中的lpow函数:math.pow(2,3) ---8;
注意数值运算浮点数的溢出;
math.pi为圆周率;
round()进行四舍五入;