Python log() 函數(shù)
python log() 函數(shù)
log() 返回 x 的自然對數(shù)。
1. 語法
以下是 log() 方法的語法:
import math math.log(x[, base])
注意:log()是不能直接訪問的,需要導(dǎo)入 math 模塊,通過靜態(tài)對象調(diào)用該方法。
2. 參數(shù)
- x -- 數(shù)值表達(dá)式。
- base -- 可選,底數(shù),默認(rèn)為 e。
3. 返回值
返回 x 的自然對數(shù),x>0。
4. 實例
以下展示了使用 log() 方法的實例:
#!/usr/bin/python # -*- coding: utf-8 -*- import math # 導(dǎo)入 math 模塊 print "math.log(100.12) : ", math.log(100.12) print "math.log(100.72) : ", math.log(100.72) print "math.log(119l) : ", math.log(119l) print "math.log(math.pi) : ", math.log(math.pi) # 設(shè)置底數(shù) print "math.log(10,2) : ", math.log(10,2)
以上實例運(yùn)行后輸出結(jié)果為:
math.log(100.12) : 4.60636946656 math.log(100.72) : 4.61234438974 math.log(119l) : 4.77912349311 math.log(math.pi) : 1.14472988585 math.log(10,2) : 3.32192809489
相關(guān)文章
- Python 簡介
- Python 條件語句
- Python while 循環(huán)語句
- Python Number 數(shù)字
- Python 字典 Dictionary
- Python 文件I/O
- Python File 方法
- Python CGI編程
- Python2 與 Python3?? 版本區(qū)別
- Python IDE
- Python 列表
- Python 二維數(shù)組
- Python 矩陣
- Python 節(jié)點(diǎn)
- Python 排序算法
- Python3 教程
- Python3 解釋器
- Python3 if else 語句
- Python3 錯誤和異常
- Python MongoDB 數(shù)據(jù)庫連接 - PyMongo 驅(qū)動