1. 程式人生 > >python實現輸入數字的連續加減

python實現輸入數字的連續加減

不用庫,寫了很久,一直出bug,到網上一搜,可以直接輸入之後,eval(str)即可得到結果!敲打

eval程式如下:

s=input("請輸入要運算的數字")
print("The result is{}".format(eval(s)))

下面是不用eval實現加減的程式碼:主要思想就是通過一個標誌位flag來計算是否進行加減,其他的都很好理解

s=input("請輸入要運算的數字")
l=len(s)
h=0
i=0
flag=1
a=0
for i in range(0,l):
    if s[i]=='+' or s[i]=='-':
        flag=1
        c=s[i]
    else:
        flag=0
        a=a*10+round(int(s[i]))
    if flag==1 and s[i]=='+':
        h+=a
        a=0
    elif flag==1 and s[i]=='-':
        h-=a
        a=0
print(h)
現在貼上一直出錯的程式碼,也算是長點經驗,提醒自己下一次細心一點:
s=input("請輸入要運算的數字")
l=len(s)
h=0
i=0
while i<=l:
    a=0
    c=s[i]
    i+=1
    while s[i]!='+' and s[i]!='-' and i<=l :
        a=a*10+round(int(s[i]))
        i+=1
    if c=='+':
        h+=a
    else:
        h-=a
print(h)
#錯誤型別:IndexError: string index out of range(字串越界)

說明一下,越界有兩個原因:

①能夠訪問的最大字串是len(str)-1  (ps上圖直接是len(str))

②python執行的方法是一句一句執行的,所以i<=l-1應該放在s[i] != '+'的前面

下面貼上修改過後能執行並且可以輸出正確結果的程式碼:

s=input("請輸入要運算的數字")
l=len(s)-1
h=0
i=0
while i<=l:
    a=0
    c=s[i]
    i+=1
    while i<=l and s[i]!='+' and s[i]!='-' :
        a=a*10+round(int(s[i]))
        i+=1
    if c=='+':
        h+=a
    else:
        h-=a
print(h)