atan de Number Python

import math

num = 5
num = math.atan(5)
print(num)

# Output
# 1.373400766945016
Uptight Unicorn