简单类型 / 数字 / 数学运算
取幂
平方根
最小值和最大值
对数
常用对数
正弦、余弦和正切
from
math
import
*
number =
100
result =
sqrt
(number)
# result
is
10.0
print
(f
"
{result = }
"
)