My Problem is that I don't get the same calculations on python, than on my calculator:
Calculations on Calculator in Degree mode:
cos(270)
that gives me:
0
When I put the same calculations in python:
print(math.cos(math.radians(270)))
I get something completely different:
-1.8369701987210297e-16
I guess it is a very simple Mistake I made, please help me....