您好,登錄后才能下訂單哦!
Python有哪些內(nèi)置函數(shù)?針對這個問題,這篇文章詳細(xì)介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
為了提高程序員的開發(fā)效率,Python 提供了很多可以直接拿來用的函數(shù)(初學(xué)者可以先理解為方法),每個函數(shù)都可以幫助程序員實現(xiàn)某些具體的功能。
舉個例子,在 Python 2.x 中 print 只是一個關(guān)鍵字,但在 Python 3.x 中,print 是用于打印輸出的函數(shù),而且還是一個內(nèi)置函數(shù),通過此函數(shù),我們可以直接將數(shù)據(jù)做輸出操作,比如說:
>>>print("php中文網(wǎng)") php中文網(wǎng)
除了 print() 函數(shù)之外,Python 還提供了很多內(nèi)置函數(shù),表 1 中羅列出了 Python 3.x 環(huán)境中的所有內(nèi)置函數(shù)。
內(nèi)置函數(shù) | ||||
---|---|---|---|---|
abs() | delattr() | hash() | memoryview() | set() |
all() | dict() | help() | min() | setattr() |
any() | dir() | hex() | next() | slicea() |
ascii() | divmod() | id() | object() | sorted() |
bin() | enumerate() | input() | oct() | staticmethod() |
bool() | eval() | int() | open() | str() |
breakpoint() | exec() | isinstance() | ord() | sum() |
bytearray() | filter() | issubclass() | pow() | super() |
bytes() | float() | iter() | print() | tuple() |
callable() | format() | len() | property() | type() |
chr() | frozenset() | list() | range() | vars() |
classmethod() | getattr() | locals() | repr() | zip() |
compile() | globals() | map() | reversed() | __import__() |
complex() | hasattr() | max() | round() |
需要注意的是,開發(fā)者不建議使用以上內(nèi)置函數(shù)的名字作為標(biāo)識符使用(作為某個變量、函數(shù)、類、模板或其他對象的名稱),雖然這樣做 Python 解釋器不會報錯,但這會導(dǎo)致同名的內(nèi)置函數(shù)被覆蓋,從而無法使用。例如:
>>> print="php中文網(wǎng)" #Python解釋器不會報錯 >>> print(print) Traceback (most recent call last): File "<pyshell#1>", line 1, in <module> print(print) TypeError: 'str' object is not callable
關(guān)于Python有哪些內(nèi)置函數(shù)問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。