I can't understand how abs() function works with pos() method from Turle graphics:
from turtle import *
while True:
forward(200)
left(170)
print(str(abs(pos()))+"\t\t"+str(pos()))
if abs(pos()) < 1:
break
The abs() function change vector like this:
(3.04,34.73) >> 34.862297099063255
Is there any mathematical explanation of this?