SyntaxFix
Write A Post
Hire A Developer
Questions
radian can also be converted to degree by using numpy
print(np.rad2deg(1)) 57.29577951308232
if needed to roundoff ( I did with 6 digits after decimal below), then
print(np.round(np.rad2deg(1), 6) 57.29578