App下載

詞條

大約有 2,000 項(xiàng)符合查詢結(jié)果 ,庫(kù)內(nèi)數(shù)據(jù)總量為 78,250 項(xiàng)。(搜索耗時(shí):0.0141秒)

441.Python unichr() 函數(shù)

Python unichr() 函數(shù) Python 內(nèi)置函數(shù)描述Python unichr() 函數(shù) 和 chr() 函數(shù)功能基本一樣, 只不過是返回 unicode 的字符。語法以下是 unichr() 方法的語法:unichr(i) 參數(shù)i:可以是10進(jìn)制也可以是16進(jìn)制的形式的數(shù)字。返回值返回 unicode 的字符...

http://www.o2fo.com/python/python-func-unichr.html

442.Python callable() 函數(shù)

Python callable() 函數(shù) Python 內(nèi)置函數(shù)描述Python callable() 函數(shù)用于檢查一個(gè)對(duì)象是否是可調(diào)用的。如果返回 True,object 仍然可能調(diào)用失敗;但如果返回 False,調(diào)用對(duì)象 object 絕對(duì)不會(huì)成功。對(duì)于函數(shù)、方法、lambda 函式、 類以及實(shí)現(xiàn)了...

http://www.o2fo.com/python/python-func-callable.html

443.Python locals() 函數(shù)

Python locals() 函數(shù) Python 內(nèi)置函數(shù)描述Python locals() 函數(shù)會(huì)以字典類型返回當(dāng)前位置的全部局部變量。對(duì)于函數(shù), 方法, lambda 函式, 類, 以及實(shí)現(xiàn)了 __call__ 方法的類實(shí)例, 它都返回 True。語法locals() 函數(shù)語法:locals() 參數(shù)無返回值返回...

http://www.o2fo.com/python/python-func-locals.html

444.Python chr() 函數(shù)

Python chr() 函數(shù) Python 內(nèi)置函數(shù)描述Python chr() 用一個(gè)范圍在 range(256)內(nèi)的(就是0~255)整數(shù)作參數(shù),返回一個(gè)對(duì)應(yīng)的字符。語法以下是 chr() 方法的語法:chr(i) 參數(shù)i:可以是10進(jìn)制也可以是16進(jìn)制的形式的數(shù)字。返回值返回值是...

http://www.o2fo.com/python/python-func-chr.html

445.Python frozenset() 函數(shù)

Python frozenset() 函數(shù) Python 內(nèi)置函數(shù)描述Python frozenset() 返回一個(gè)凍結(jié)的集合,凍結(jié)后集合不能再添加或刪除任何元素。語法frozenset() 函數(shù)語法:class frozenset([iterable]) 參數(shù)iterable:可迭代的對(duì)象,比如列表、字典、元組等等。返回...

http://www.o2fo.com/python/python-func-frozenset.html

446.Python long() 函數(shù)

Python long() 函數(shù) Python 內(nèi)置函數(shù) 描述 Python long() 函數(shù)將數(shù)字或字符串轉(zhuǎn)換為一個(gè)長(zhǎng)整型。 語法 long() 函數(shù)語法:class long(x, base=10) 參數(shù) x:字符串或數(shù)字。 base:可選,進(jìn)制數(shù),默認(rèn)十進(jìn)制。 返回值 返回長(zhǎng)整型數(shù)。 實(shí)例 以下實(shí)...

http://www.o2fo.com/python/python-func-long.html

447.Python reload() 函數(shù)

Python reload() 函數(shù) Python 內(nèi)置函數(shù) 描述 Python reload() 用于重新載入之前載入的模塊。 語法 reload() 函數(shù)語法:reload(module) 參數(shù) module:模塊對(duì)象。 返回值 返回模塊對(duì)象。 實(shí)例 以下實(shí)例展示了 reload() 的使用方法: 重新載入 sys 模塊...

http://www.o2fo.com/python/python-func-reload.html

448.Python vars() 函數(shù)

Python vars() 函數(shù) Python 內(nèi)置函數(shù)描述Python vars() 函數(shù)返回對(duì)象object的屬性和屬性值的字典對(duì)象。語法vars() 函數(shù)語法:vars([object]) 參數(shù)object:對(duì)象返回值返回對(duì)象object的屬性和屬性值的字典對(duì)象,如果沒有參數(shù),就打印當(dāng)前調(diào)用位...

http://www.o2fo.com/python/python-func-vars.html

449.Python classmethod 修飾符

Python classmethod 修飾符 Python 內(nèi)置函數(shù)描述Python classmethod 修飾符對(duì)應(yīng)的函數(shù)不需要實(shí)例化,不需要 self 參數(shù),但第一個(gè)參數(shù)需要是表示自身類的 cls 參數(shù),可以來調(diào)用類的屬性,類的方法,實(shí)例化對(duì)象等。語法classmethod 語法:classm...

http://www.o2fo.com/python/python-func-classmethod.html

450.Python getattr() 函數(shù)

Python getattr() 函數(shù) Python 內(nèi)置函數(shù)描述Python getattr() 函數(shù)用于返回一個(gè)對(duì)象屬性值。語法getattr 語法:getattr(object, name[, default])參數(shù)object:對(duì)象。name:字符串,對(duì)象屬性。default:默認(rèn)返回值,如果不提供該參數(shù),在沒有對(duì)應(yīng)屬性時(shí)...

http://www.o2fo.com/python/python-func-getattr.html

抱歉,暫時(shí)沒有相關(guān)的微課

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時(shí)沒有相關(guān)的視頻課程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時(shí)沒有相關(guān)的教程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

441.Python unichr() 函數(shù)

Python unichr() 函數(shù) Python 內(nèi)置函數(shù)描述Python unichr() 函數(shù) 和 chr() 函數(shù)功能基本一樣, 只不過是返回 unicode 的字符。語法以下是 unichr() 方法的語法:unichr(i) 參數(shù)i:可以是10進(jìn)制也可以是16進(jìn)制的形式的數(shù)字。返回值返回 unicode 的字符...

http://www.o2fo.com/python/python-func-unichr.html

442.Python callable() 函數(shù)

Python callable() 函數(shù) Python 內(nèi)置函數(shù)描述Python callable() 函數(shù)用于檢查一個(gè)對(duì)象是否是可調(diào)用的。如果返回 True,object 仍然可能調(diào)用失??;但如果返回 False,調(diào)用對(duì)象 object 絕對(duì)不會(huì)成功。對(duì)于函數(shù)、方法、lambda 函式、 類以及實(shí)現(xiàn)了...

http://www.o2fo.com/python/python-func-callable.html

443.Python locals() 函數(shù)

Python locals() 函數(shù) Python 內(nèi)置函數(shù)描述Python locals() 函數(shù)會(huì)以字典類型返回當(dāng)前位置的全部局部變量。對(duì)于函數(shù), 方法, lambda 函式, 類, 以及實(shí)現(xiàn)了 __call__ 方法的類實(shí)例, 它都返回 True。語法locals() 函數(shù)語法:locals() 參數(shù)無返回值返回...

http://www.o2fo.com/python/python-func-locals.html

444.Python chr() 函數(shù)

Python chr() 函數(shù) Python 內(nèi)置函數(shù)描述Python chr() 用一個(gè)范圍在 range(256)內(nèi)的(就是0~255)整數(shù)作參數(shù),返回一個(gè)對(duì)應(yīng)的字符。語法以下是 chr() 方法的語法:chr(i) 參數(shù)i:可以是10進(jìn)制也可以是16進(jìn)制的形式的數(shù)字。返回值返回值是...

http://www.o2fo.com/python/python-func-chr.html

445.Python frozenset() 函數(shù)

Python frozenset() 函數(shù) Python 內(nèi)置函數(shù)描述Python frozenset() 返回一個(gè)凍結(jié)的集合,凍結(jié)后集合不能再添加或刪除任何元素。語法frozenset() 函數(shù)語法:class frozenset([iterable]) 參數(shù)iterable:可迭代的對(duì)象,比如列表、字典、元組等等。返回...

http://www.o2fo.com/python/python-func-frozenset.html

446.Python long() 函數(shù)

Python long() 函數(shù) Python 內(nèi)置函數(shù) 描述 Python long() 函數(shù)將數(shù)字或字符串轉(zhuǎn)換為一個(gè)長(zhǎng)整型。 語法 long() 函數(shù)語法:class long(x, base=10) 參數(shù) x:字符串或數(shù)字。 base:可選,進(jìn)制數(shù),默認(rèn)十進(jìn)制。 返回值 返回長(zhǎng)整型數(shù)。 實(shí)例 以下實(shí)...

http://www.o2fo.com/python/python-func-long.html

447.Python reload() 函數(shù)

Python reload() 函數(shù) Python 內(nèi)置函數(shù) 描述 Python reload() 用于重新載入之前載入的模塊。 語法 reload() 函數(shù)語法:reload(module) 參數(shù) module:模塊對(duì)象。 返回值 返回模塊對(duì)象。 實(shí)例 以下實(shí)例展示了 reload() 的使用方法: 重新載入 sys 模塊...

http://www.o2fo.com/python/python-func-reload.html

448.Python vars() 函數(shù)

Python vars() 函數(shù) Python 內(nèi)置函數(shù)描述Python vars() 函數(shù)返回對(duì)象object的屬性和屬性值的字典對(duì)象。語法vars() 函數(shù)語法:vars([object]) 參數(shù)object:對(duì)象返回值返回對(duì)象object的屬性和屬性值的字典對(duì)象,如果沒有參數(shù),就打印當(dāng)前調(diào)用位...

http://www.o2fo.com/python/python-func-vars.html

449.Python classmethod 修飾符

Python classmethod 修飾符 Python 內(nèi)置函數(shù)描述Python classmethod 修飾符對(duì)應(yīng)的函數(shù)不需要實(shí)例化,不需要 self 參數(shù),但第一個(gè)參數(shù)需要是表示自身類的 cls 參數(shù),可以來調(diào)用類的屬性,類的方法,實(shí)例化對(duì)象等。語法classmethod 語法:classm...

http://www.o2fo.com/python/python-func-classmethod.html

450.Python getattr() 函數(shù)

Python getattr() 函數(shù) Python 內(nèi)置函數(shù)描述Python getattr() 函數(shù)用于返回一個(gè)對(duì)象屬性值。語法getattr 語法:getattr(object, name[, default])參數(shù)object:對(duì)象。name:字符串,對(duì)象屬性。default:默認(rèn)返回值,如果不提供該參數(shù),在沒有對(duì)應(yīng)屬性時(shí)...

http://www.o2fo.com/python/python-func-getattr.html

抱歉,暫時(shí)沒有相關(guān)的文章

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

熱門課程