App下載

詞條

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

461.Python hex() 函數(shù)

Python hex() 函數(shù) Python 內(nèi)置函數(shù)描述Python hex() 函數(shù)用于將10進(jìn)制整數(shù)轉(zhuǎn)換成16進(jìn)制,以字符串形式表示。語法hex 語法:hex(x) 參數(shù)說明:x:10進(jìn)制整數(shù)返回值返回16進(jìn)制數(shù),以字符串形式表示。實(shí)例以下實(shí)例展示了 hex 的使用方法:&...

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

462.Python slice() 函數(shù)

Python slice() 函數(shù) Python 內(nèi)置函數(shù)描述Python slice() 函數(shù)實(shí)現(xiàn)切片對(duì)象,主要用在切片操作函數(shù)里的參數(shù)傳遞。語法slice 語法:class slice(stop) class slice(start, stop[, step]) 參數(shù)說明:start:起始位置stop:結(jié)束位置step:間距返回值返回一個(gè)...

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

463.Python id() 函數(shù)

Python id() 函數(shù) Python 內(nèi)置函數(shù)描述Python id() 函數(shù)用于獲取對(duì)象的內(nèi)存地址。語法id 語法:id([object]) 參數(shù)說明:object:對(duì)象。返回值返回對(duì)象的內(nèi)存地址。實(shí)例以下實(shí)例展示了 id 的使用方法:>>> a = 'w3cschool' >>> ...

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

464.Python oct() 函數(shù)

Python oct() 函數(shù) Python 內(nèi)置函數(shù)描述Python oct() 函數(shù)將一個(gè)整數(shù)轉(zhuǎn)換成8進(jìn)制字符串。語法oct 語法:oct(x) 參數(shù)說明:x:整數(shù)。返回值返回8進(jìn)制字符串。實(shí)例以下實(shí)例展示了 oct 的使用方法:>>>oct(10) '012' >>> oct(20) ...

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

465.Python3 hex() 函數(shù)

Python3 hex() 函數(shù) Python3 內(nèi)置函數(shù)描述Python3 hex() 函數(shù)用于將一個(gè)指定數(shù)字轉(zhuǎn)換為 16 進(jìn)制數(shù)。語法hex 語法:hex(x)參數(shù)說明:x -- 一個(gè)整數(shù)返回值返回一個(gè)字符串,以 0x 開頭。實(shí)例以下實(shí)例展示了 hex 的使用方法:>>>hex(255) '...

http://www.o2fo.com/python3/python3-func-hex.html

466.Python3 enumerate() 函數(shù)

Python3 enumerate() 函數(shù) Python3 內(nèi)置函數(shù)描述Python3 enumerate() 函數(shù)用于將一個(gè)可遍歷的數(shù)據(jù)對(duì)象(如列表、元組或字符串)組合為一個(gè)索引序列,同時(shí)列出數(shù)據(jù)和數(shù)據(jù)下標(biāo),一般用在 for 循環(huán)當(dāng)中。語法以下是 enumerate() 方法的語法:enumerat...

http://www.o2fo.com/python3/python3-func-enumerate.html

467.Python3 ord() 函數(shù)

Python3 ord() 函數(shù) Python3 內(nèi)置函數(shù)描述Python3 ord() 函數(shù)是 chr() 函數(shù)(對(duì)于 8 位的 ASCII 字符串)的配對(duì)函數(shù),它以一個(gè)字符串(Unicode 字符)作為參數(shù),返回對(duì)應(yīng)的 ASCII 數(shù)值,或者 Unicode 數(shù)值。語法以下是 ord() 方法的語法:ord(c) 參數(shù)...

http://www.o2fo.com/python3/python3-func-ord.html

468.Python3 bytes 函數(shù)

Python3 bytes 函數(shù) Python3 內(nèi)置函數(shù)描述Python3 bytes 函數(shù)返回一個(gè)新的 bytes 對(duì)象,該對(duì)象是一個(gè) 0 <= x < 256 區(qū)間內(nèi)的整數(shù)不可變序列。它是 bytearray 的不可變版本。語法以下是 bytes 的語法:class bytes([source[, encoding[, errors]]])參數(shù)如果...

http://www.o2fo.com/python3/python3-func-bytes.html

469.Python3 tuple 函數(shù)

Python3 tuple 函數(shù) Python3 內(nèi)置函數(shù)描述Python3 tuple 函數(shù)將列表轉(zhuǎn)換為元組。。語法以下是 tuple 的語法:tuple( seq ) 參數(shù)seq -- 要轉(zhuǎn)換為元組的序列。返回值返回元組。實(shí)例以下展示了使用 tuple 的實(shí)例:>>>list1= ['Google', 'Ta...

http://www.o2fo.com/python3/python3-func-tuple.html

470.Python3 chr() 函數(shù)

Python3 chr() 函數(shù)Python3 內(nèi)置函數(shù)描述Python3 chr() 用一個(gè)整數(shù)作參數(shù),返回一個(gè)對(duì)應(yīng)的字符。語法以下是 chr() 方法的語法:chr(i) 參數(shù)i -- 可以是 10 進(jìn)制也可以是 16 進(jìn)制的形式的數(shù)字,數(shù)字范圍為 0 到 1,114,111 (16 進(jìn)制為0x10FFFF)。返回...

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

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

w3cschool 建議您:

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

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

w3cschool 建議您:

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

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

w3cschool 建議您:

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

461.Python hex() 函數(shù)

Python hex() 函數(shù) Python 內(nèi)置函數(shù)描述Python hex() 函數(shù)用于將10進(jìn)制整數(shù)轉(zhuǎn)換成16進(jìn)制,以字符串形式表示。語法hex 語法:hex(x) 參數(shù)說明:x:10進(jìn)制整數(shù)返回值返回16進(jìn)制數(shù),以字符串形式表示。實(shí)例以下實(shí)例展示了 hex 的使用方法:&...

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

462.Python slice() 函數(shù)

Python slice() 函數(shù) Python 內(nèi)置函數(shù)描述Python slice() 函數(shù)實(shí)現(xiàn)切片對(duì)象,主要用在切片操作函數(shù)里的參數(shù)傳遞。語法slice 語法:class slice(stop) class slice(start, stop[, step]) 參數(shù)說明:start:起始位置stop:結(jié)束位置step:間距返回值返回一個(gè)...

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

463.Python id() 函數(shù)

Python id() 函數(shù) Python 內(nèi)置函數(shù)描述Python id() 函數(shù)用于獲取對(duì)象的內(nèi)存地址。語法id 語法:id([object]) 參數(shù)說明:object:對(duì)象。返回值返回對(duì)象的內(nèi)存地址。實(shí)例以下實(shí)例展示了 id 的使用方法:>>> a = 'w3cschool' >>> ...

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

464.Python oct() 函數(shù)

Python oct() 函數(shù) Python 內(nèi)置函數(shù)描述Python oct() 函數(shù)將一個(gè)整數(shù)轉(zhuǎn)換成8進(jìn)制字符串。語法oct 語法:oct(x) 參數(shù)說明:x:整數(shù)。返回值返回8進(jìn)制字符串。實(shí)例以下實(shí)例展示了 oct 的使用方法:>>>oct(10) '012' >>> oct(20) ...

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

465.Python3 hex() 函數(shù)

Python3 hex() 函數(shù) Python3 內(nèi)置函數(shù)描述Python3 hex() 函數(shù)用于將一個(gè)指定數(shù)字轉(zhuǎn)換為 16 進(jìn)制數(shù)。語法hex 語法:hex(x)參數(shù)說明:x -- 一個(gè)整數(shù)返回值返回一個(gè)字符串,以 0x 開頭。實(shí)例以下實(shí)例展示了 hex 的使用方法:>>>hex(255) '...

http://www.o2fo.com/python3/python3-func-hex.html

466.Python3 enumerate() 函數(shù)

Python3 enumerate() 函數(shù) Python3 內(nèi)置函數(shù)描述Python3 enumerate() 函數(shù)用于將一個(gè)可遍歷的數(shù)據(jù)對(duì)象(如列表、元組或字符串)組合為一個(gè)索引序列,同時(shí)列出數(shù)據(jù)和數(shù)據(jù)下標(biāo),一般用在 for 循環(huán)當(dāng)中。語法以下是 enumerate() 方法的語法:enumerat...

http://www.o2fo.com/python3/python3-func-enumerate.html

467.Python3 ord() 函數(shù)

Python3 ord() 函數(shù) Python3 內(nèi)置函數(shù)描述Python3 ord() 函數(shù)是 chr() 函數(shù)(對(duì)于 8 位的 ASCII 字符串)的配對(duì)函數(shù),它以一個(gè)字符串(Unicode 字符)作為參數(shù),返回對(duì)應(yīng)的 ASCII 數(shù)值,或者 Unicode 數(shù)值。語法以下是 ord() 方法的語法:ord(c) 參數(shù)...

http://www.o2fo.com/python3/python3-func-ord.html

468.Python3 bytes 函數(shù)

Python3 bytes 函數(shù) Python3 內(nèi)置函數(shù)描述Python3 bytes 函數(shù)返回一個(gè)新的 bytes 對(duì)象,該對(duì)象是一個(gè) 0 <= x < 256 區(qū)間內(nèi)的整數(shù)不可變序列。它是 bytearray 的不可變版本。語法以下是 bytes 的語法:class bytes([source[, encoding[, errors]]])參數(shù)如果...

http://www.o2fo.com/python3/python3-func-bytes.html

469.Python3 tuple 函數(shù)

Python3 tuple 函數(shù) Python3 內(nèi)置函數(shù)描述Python3 tuple 函數(shù)將列表轉(zhuǎn)換為元組。。語法以下是 tuple 的語法:tuple( seq ) 參數(shù)seq -- 要轉(zhuǎn)換為元組的序列。返回值返回元組。實(shí)例以下展示了使用 tuple 的實(shí)例:>>>list1= ['Google', 'Ta...

http://www.o2fo.com/python3/python3-func-tuple.html

470.Python3 chr() 函數(shù)

Python3 chr() 函數(shù)Python3 內(nèi)置函數(shù)描述Python3 chr() 用一個(gè)整數(shù)作參數(shù),返回一個(gè)對(duì)應(yīng)的字符。語法以下是 chr() 方法的語法:chr(i) 參數(shù)i -- 可以是 10 進(jìn)制也可以是 16 進(jìn)制的形式的數(shù)字,數(shù)字范圍為 0 到 1,114,111 (16 進(jìn)制為0x10FFFF)。返回...

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

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

w3cschool 建議您:

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

熱門課程