Python int() 函數(shù)

2019-03-13 13:41 更新

Python int() 函數(shù)

Python 內(nèi)置函數(shù) Python 內(nèi)置函數(shù)

描述

Python int() 函數(shù)用于將一個(gè)字符串或數(shù)字轉(zhuǎn)換為整型。

語法

以下是 int() 方法的語法:

class int(x, base=10)

參數(shù)

  • x:字符串或數(shù)字。
  • base:進(jìn)制數(shù),默認(rèn)十進(jìn)制。

返回值

返回整型數(shù)據(jù)。

實(shí)例

以下展示了使用 int() 方法的實(shí)例:

>>>int() # 不傳入?yún)?shù)時(shí),得到結(jié)果0
0
>>> int(3)
3
>>> int(3.6)
3
>>> int('12',16) # 如果是帶參數(shù)base的話,12要以字符串的形式進(jìn)行輸入,12 為 16進(jìn)制
18
>>> int('0xa',16)
10
>>> int('10',8)
8

Python 內(nèi)置函數(shù) Python 內(nèi)置函數(shù)

以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號