當前位置:首頁 » 編程語言 » pythonbuiltin

pythonbuiltin

發布時間: 2025-01-02 02:57:17

『壹』 python 中的int函數怎麼用

int()是Python的一個內部函數

Python系統幫助裡面是這么說的

[python] view plain

  • >>>help(int)

  • Helponclassintinmole__builtin__:

  • classint(object)

  • |int(x[,base])->integer

  • |

  • |,ifpossible.Afloatingpoint

  • |(thisdoesnotincludeastring

  • |!)Whenconvertingastring,use

  • |theoptionalbase.

  • |non-string.Ifbaseiszero,

  • |stringcontent.

  • |.

  • [python] view plain

  • >>>int(12.0)

  • 12

  • int()函數可以將一個數轉化為整數

    [python] view plain

  • >>>int('12',16)

  • 18

  • 這里有兩個地方要注意:1)12要以字元串的形式進行輸入,如果是帶參數base的話

    2)這里並不是將12轉換為16進制的數,而是說12就是一個16進制的數,int()函數將其用十進制數表示,如下

    [python] view plain

  • >>>int('0xa',16)

  • 10

  • >>>int('10',8)

  • 8

熱點內容
python導出資料庫 發布:2025-01-04 19:15:57 瀏覽:745
安卓怎麼安裝ios模擬器 發布:2025-01-04 19:09:56 瀏覽:162
王者安卓轉蘋果區選哪個區 發布:2025-01-04 19:03:44 瀏覽:692
qq編程碼 發布:2025-01-04 18:56:28 瀏覽:439
c語言中ctod 發布:2025-01-04 18:42:29 瀏覽:610
資料庫推廣 發布:2025-01-04 18:41:50 瀏覽:261
sql學生表與成績表 發布:2025-01-04 18:37:00 瀏覽:58
ftp的使用方法 發布:2025-01-04 18:29:09 瀏覽:884
武漢java工資水平 發布:2025-01-04 18:27:44 瀏覽:410
linux修改文件保存 發布:2025-01-04 18:20:52 瀏覽:204