首頁 >後端開發 >Python教學 >如何在Python中將字串轉換為數字?

如何在Python中將字串轉換為數字?

王林
王林轉載
2023-08-26 19:37:033720瀏覽

如何在Python中將字串轉換為數字?

要將字串轉換為數字,有多種方法。讓我們一一看看。

使用 int() 將字串轉換為數字

範例

在此範例中,我們將使用 int() 方法將字串轉換為數字 -

# String to be converted
myStr = "200"

# Display the string and it's type
print("String = ",myStr)
print("Type= ", type(myStr))

# Convert the string to integer using int() and display the type
myInt = int(myStr)
print("\nInteger = ", myInt)
print("Type = ", type(myInt))

輸出

String =  200
Type=  <class 'str'>

Integer =  200
Type =  <class 'int'>

使用 float() 將字串轉換為數字

範例

在此範例中,我們將使用 float() 方法將字串轉換為浮點數,然後使用 int() 方法將浮點數轉換為整數 -

# String to be converted
myStr = "500"

# Display the string and it's type
print("String = ",myStr)
print("Type= ", type(myStr))

# Convert the string to float
myFloat = float(myStr)
print("\nFloat = ", myFloat)
print("Type = ", type(myFloat))

# Convert the float to int
myInt = int(myFloat)
print("\nInteger = ", myInt)
print("Type = ", type(myInt))

輸出

String =  500
Type=  <class 'str'>

Float =  500.0
Type =  <class 'float'>

Integer =  500
Type =  <class 'int'>

將字串轉換為數字base10和base8

範例

在此範例中,我們將使用帶有基本參數的 int() 將字串轉換為數字。

# String to be converted
myStr = "500"

# Display the string and it's type
print("String = ",myStr)
print("Type= ", type(myStr))

# Convert the string to int
myInt1 = int(myStr)
print("\nInteger (base10) = ", myInt1)
print("Type = ", type(myInt1))

# Convert the string to int
myInt2 = int(myStr, base=8)
print("\nInteger (base8) = ", myInt2)
print("Type = ", type(myInt2))

輸出

String =  500
Type=  <class 'str'>
Integer (base10) =  500
Type =  <class 'int'>

Integer (base8) =  320
Type =  <class 'int'>

以上是如何在Python中將字串轉換為數字?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除