Python 的 int(~)
構造函數從字符串或數字返回整數對象。
參數
1.x
| number
或 string
| optional
要轉換為整數對象的數字或字符串。默認為 0。
2. base
| number
| optional
當輸入是字符串時使用的 base-n 文字。有效值為 0 和 2 - 36。默認值為 10。
返回值
一個整數對象。
例子
基本用法
要從字符串 '18'
創建整數對象:
a = '18'
b = int(a)
print(b)
print(type(b))
18
<class 'int>
基本參數
要從 '132'
創建整數對象(以 5 為基數表示):
a = '132'
b = int(a, 5)
print(b)
print(type(b))
42
<class 'int'>
以 5 為基數的 '132'
相當於以 10 為基數的 42
。
相關用法
- Python scipy integrate.trapz用法及代碼示例
- Python int轉exponential用法及代碼示例
- Python integer轉string用法及代碼示例
- Python scipy interpolate.CubicHermiteSpline.solve用法及代碼示例
- Python scipy interpolate.CubicSpline.solve用法及代碼示例
- Python int.from_bytes用法及代碼示例
- Python scipy integrate.cumtrapz用法及代碼示例
- Python scipy interpolate.PchipInterpolator.solve用法及代碼示例
- Python int.bit_length用法及代碼示例
- Python integer轉roman用法及代碼示例
- Python int.bit_count用法及代碼示例
- Python scipy integrate.simps用法及代碼示例
- Python Pandas interval_range方法用法及代碼示例
- Python int.to_bytes用法及代碼示例
- Python scipy interpolate.Akima1DInterpolator.solve用法及代碼示例
- Python NumPy interp方法用法及代碼示例
- Python int()用法及代碼示例
- Python BeautifulSoup insert方法用法及代碼示例
- Python inspect.Parameter.replace用法及代碼示例
- Python inspect.Parameter.kind用法及代碼示例
- Python inspect.Signature.from_callable用法及代碼示例
- Python Django index用法及代碼示例
- Python inspect.isasyncgenfunction用法及代碼示例
- Python inspect.isawaitable用法及代碼示例
- Python BeautifulSoup insert_after方法用法及代碼示例
注:本文由純淨天空篩選整理自Isshin Inada大神的英文原創作品 Python | int constructor。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。