我想定義一個函數,它返回兩個給定數字之間的所有整數的總和,但我在下面的最後一行代碼中遇到了問題。例如,用戶輸入兩個整數,例如(2,6),並且該函數將一起添加所有內容,2 + 3 + 4 + 5 + 6 = 20。我無法弄清楚如何使我的函數在輸入(x)處開始並在輸入(y)處結束。另外,我想使用while循環。雖然循環和元組
def gauss(x, y):
"""returns the sum of all the integers between, and including, the two given numbers
int, int -> int"""
x = int
y = int
counter = 1
while counter <= x:
return (x + counter: len(y))
我試着修復你的代碼格式,但是'x = int'等沒有意義 – 2015-02-09 04:34:34