Run
import math y = 10 x = 3 result = math.atan2(y, x) result = math.degrees(result) print('atan2(y, x) :', result, 'degrees')
Output