以下是使用Python实现log,sqrt和三角函数计算的代码示例:
import math# 计算以10为底的对数
log10 = math.log10(100)
print(log10)# 计算以自然常数e为底的对数
ln = math.log(math.e)
print(ln)
# 计算平方根
sqrt = math.sqrt(100)
print(sqrt)# 计算正弦值
sin = math.sin(math.pi/2)
print(sin)# 计算余弦值
cos = math.cos(math.pi)
print(cos)
注意:在使用三角函数时,需要将角度转换为弧度。上述示例中,我们使用了math.pi/2和math.pi/4来表示90度和45度的弧度值。