當前位置:首頁 » 編程語言 » 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

熱點內容
汽修汽配源碼 發布:2025-05-14 20:08:53 瀏覽:741
蜜蜂編程官網 發布:2025-05-14 19:59:28 瀏覽:57
優酷怎麼給視頻加密 發布:2025-05-14 19:31:34 瀏覽:635
夢三國2副本腳本 發布:2025-05-14 19:29:58 瀏覽:860
phpxmlhttp 發布:2025-05-14 19:29:58 瀏覽:434
Pua腳本 發布:2025-05-14 19:24:56 瀏覽:449
蘋果像素低為什麼比安卓好 發布:2025-05-14 19:13:23 瀏覽:461
安卓機微信怎麼設置紅包提醒 發布:2025-05-14 19:00:15 瀏覽:272
androidsystem許可權設置 發布:2025-05-14 18:56:02 瀏覽:971
mq腳本 發布:2025-05-14 18:45:37 瀏覽:25