如何使用Python將String轉換為int

句法:

int_nb = int(nb)

如果對象的字符串表示形式用於數學公式,Python將返回以下錯誤:
TypeError: can only concatenate str (not "int") to str

例:

nb = "10"
print(nb)

int_nb = int(nb)
print(int_nb)

int_nb2 = int("10")+2

print(int_nb2)

此示例從字符串“10”創建變量nb。 該變量寫在輸出中。 變量轉換為整數並寫入輸出。 為兩個呼叫寫入10。 最後,變量int_nb2是通過將字符串“10”轉換為int並添加2來創建的。輸出將打印給用戶。

輸出結果為:

10
10
12

參考文獻:

Python

最近評論