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.
|.
>>>int(12.0)
12
>>>int('12',16)
18
>>>int('0xa',16)
10
>>>int('10',8)
8
[python] view plain
int()函數可以將一個數轉化為整數
[python] view plain
這里有兩個地方要注意:1)12要以字元串的形式進行輸入,如果是帶參數base的話
2)這里並不是將12轉換為16進制的數,而是說12就是一個16進制的數,int()函數將其用十進制數表示,如下
[python] view plain
熱點內容