atan2 de Number Python

import math

num = 5
num2 = 5
num3 = math.atan2(num, num2)

print(num3)
# Output:
# 0.7853981633974483
Uptight Unicorn