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'
何をすべきか提案はありますか?