hello everybody im trying to compute the log(n) while n in the first time =10 and second time =100 , third =1000 and fourth = 10000
but an error still happenening
the error is math domain error
can anybody help in this code and error
import math
import logging
n = 0
while n <= 10:
print(math.log(n))
n = n + 1