Get your own Python server Result Size: 625 x 565
x
 
# Import math Library
import math
# Return the log(1+number) for different numbers
print(math.log1p(2.7183))
print(math.log1p(2))
print(math.log1p(1))
1.3132665745863341
1.0986122886681096
0.6931471805599453