現在我對我的代碼有點糾結。 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)
當然,你也可以做到這一點的轉換::)
很抱歉,但我的代碼縮進這件事情只是沒有縮進了! :/ – Sonofmetal
你使用標籤,東西使用空格。不要擔心。 –