執行 ❯
擁有你自己的 Python 伺服器
×
更改方向
更改主題,深色/淺色
前往 Spaces
# 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