python-3.x 如何使math.sin()以度为单位是默认值[重复]

fnatzsnv  于 2023-10-21  发布在  Python
关注(0)|答案(1)|浏览(136)

此问题已在此处有答案

How can I convert radians to degrees with Python?(8个回答)
13天前关闭
我怎么能让math.sin()在度(不是在辐射)是默认选项在python与数学
我试着创建一个 def,其中sin(num)= math.degrees(sin(x)),但它不起作用,
我正在使用tkinter库制作一个应用程序,所以我在Python中使用math

niknxzdl

niknxzdl1#

import math

def sin_deg(x):
    return math.sin(math.radians(x))

print(sin_deg(45))

相关问题