Traceback (most recent call last): File "C:\Users\Adminis\Desktop\six\main.py", line 18, in <module> s1 = (img[0] * math.cos(math.radian(0)) + img[1] * math.cos(math.radian(30)) + img[2] * math.cos(math.radian(60)) +\ AttributeError: module 'math' has no attribute 'radian'
时间: 2024-04-02 16:37:45 浏览: 54
linux 下 pip3 报错“ File “/usr/bin/pip3”, line 9, in from pip import mainImportError: canno”处理
5星 · 资源好评率100%
这个错误提示是说在程序中使用了 math 模块中不存在的函数 radian。你可能想使用 math 模块中的 radians 函数,它用于将角度转换为弧度。所以你需要将代码中的 math.radian(0) 修改为 math.radians(0)。同样地,将 math.radian(30) 和 math.radian(60) 分别修改为 math.radians(30) 和 math.radians(60) 即可解决问题。
阅读全文