import math
pi = 3.1415
r = float(input("Enter the radius: "))
angle = float(input("Enter the angle: "))
x = r * math.cos(angle)
y = r * math.sin(angle)
print ('x =', x, 'y =', y)
当我输入 pi 或任何带有 pi 的东西作为角度提示的答案时,我收到此错误:
ValueError: could not convert string to float: 'pi'
有什么建议该怎么做吗?