You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
(1)语法错误(Syntax Errors): 这是最常见的错误类型之一。它们在代码解析时发生,因为代码违反了Python的语法规则。
(2)运行时错误(Runtime Errors):运行时错误是在程序运行时发生的错误。它们不会在代码解析时被捕获,而是在程序执行特定代码路径时引发异常。
(3)逻辑错误(Logical Errors): 逻辑错误不会导致程序崩溃,但会导致程序执行不符合预期的结果。
▪ math.pi: 圆周率 π 的近似值
▪ math.e: 自然对数的底 e 的近似值
▪ math.sqrt(x): 返回 x 的平方根
▪ math.pow(x, y): 返回 x 的 y 次方
▪ math.exp(x): 返回 e 的 x 次方
▪ math.ceil(x): 返回大于或等于 x 的最小整数。
▪ math.floor(x): 返回小于或等于 x 的最大整数。
▪ math.trunc(x): 返回 x 的整数部分。
▪ math.abs(x), math.fabs(x): 返回 x 的绝对值。
▪ math.factorial(x): 返回 x 的阶乘。
▪ math.gcd(a, b): 返回 a 和 b 的最大公约数。
10.为什么计算机进行浮点运算会有误差?浮点数通常采用 IEEE 754 标准表示,其中使用一定数量的位来表示小数和指数,这导致在表示大范围的数时,精度可能不一致。
Beta Was this translation helpful? Give feedback.
All reactions