python 求cos,sin函数,输入为度数

import math
x = 90 #度数
#求sin()
sin_mt = math.sin(math.radians(x))

#求cos()
#备注:直接用math.cos()出来的结果不完全正确
cos_mt = math.sqrt(1-sin_mt**2)

print(cos_mt)

你可能感兴趣的:(python基础知识,python)