数字函数在下面的集合1中讨论
null
对数函数和幂函数在本集中讨论。
1.经验(a) :-此函数返回 e升到a的幂(e**a) .
2.日志(a、b) :-此函数返回对数 以b为底的a的值 .如果未提及基准,则计算值为自然对数。
# Python code to demonstrate the working of # exp() and log() # importing "math" for mathematical operations import math # returning the exp of 4 print ( "The e**4 value is : " , end = "") print (math.exp( 4 )) # returning the log of 2,3 print ( "The value of log 2 with base 3 is : " , end = "") print (math.log( 2 , 3 )) |
输出:
The e**4 value is : 54.598150033144236 The value of log 2 with base 3 is : 0.6309297535714574
3.日志2(a) :-此函数计算 以2为基数记录a .这个值是 更准确 而不是上面讨论的函数的值。
4.日志10(a) :-此函数计算 以10为基数记录a .这个值是 更准确 而不是上面讨论的函数的值。
# Python code to demonstrate the working of # log2() and log10() # importing "math" for mathematical operations import math # returning the log2 of 16 print ( "The value of log2 of 16 is : " , end = "") print (math.log2( 16 )) # returning the log10 of 10000 print ( "The value of log10 of 10000 is : " , end = "") print (math.log10( 10000 )) |
输出:
The value of log2 of 16 is : 4.0 The value of log10 of 10000 is : 4.0
5.战俘(a、b) :-此函数用于计算 a升到b的幂(a**b) .
6.sqrt() :-此函数返回 平方根 这个数字是多少。
# Python code to demonstrate the working of # pow() and sqrt() # importing "math" for mathematical operations import math # returning the value of 3**2 print ( "The value of 3 to the power 2 is : " , end = "") print (math. pow ( 3 , 2 )) # returning the square root of 25 print ( "The value of square root of 25 : " , end = "") print (math.sqrt( 25 )) |
输出:
The value of 3 to the power 2 is : 9.0 The value of square root of 25 : 5.0
本文由 曼吉星 .如果你喜欢GeekSforgek,并想贡献自己的力量,你也可以使用 贡献极客。组织 或者把你的文章寄到contribute@geeksforgeeks.org.看到你的文章出现在Geeksforgeks主页上,并帮助其他极客。
如果您发现任何不正确的地方,或者您想分享有关上述主题的更多信息,请写下评论。
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END