Log of Number Python

import math

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

# Output
# 1.6094379124341003
Uptight Unicorn