2013-04-14 180 views
0

現在我對我的代碼有點糾結。 CODE:如何將字符串更改爲整數?

def main(a,b): 
    c=a+b 
    print("Your answer was: %s"% c) 
    input() 

def launch(): 
    print("Please set integer a and integer b!") 
    intA=input("Integer A: ") 
    intB=input("Integer B: ") 
    input("Press return to continue!") 
    main(intA, intB) 

我需要什麼,在被轉換INTA & INTB實際整數幫助。因爲當我運行這段代碼時,我得到:3030 ... 如果任何人都可以提供幫助,那會非常感謝!謝謝!甚至稱你的主要方法之前

c = int(a)+int(b) 

當然,你也可以做到這一點的轉換::)

+0

很抱歉,但我的代碼縮進這件事情只是沒有縮進了! :/ – Sonofmetal

+0

你使用標籤,東西使用空格。不要擔心。 –

回答

1

變化

intA=input("Integer A: ") 
intB=input("Integer B: ") 

intA=int(input("Integer A: ")) 
intB=int(input("Integer B: ")) 
+0

謝謝你!對此,我真的非常感激!兩人都工作...:/ – Sonofmetal

+0

我很高興看到我的答案有幫助。 – Sheng

0

您可以使用int

關鍵是:int試圖將參數轉換爲整數,相反,您可以使用str將數字轉換爲字符串。

+0

謝謝你!對此,我真的非常感激! – Sonofmetal

相關問題