1. 程式人生 > >每日練習②:get_sum

每日練習②:get_sum

class 輸出結果 輸出 bsp pan range 結果 每日 same

‘‘‘
def get_sum(a,b):

    #寫代碼, 輸出結果

    # get_sum(1, 0) == 1   // 1 + 0 = 1
    # get_sum(1, 2) == 3   // 1 + 2 = 3
    # get_sum(0, 1) == 1   // 0 + 1 = 1
    # get_sum(1, 1) == 1   // 1 Since both are same
    # get_sum(-1, 0) == -1 // -1 + 0 = -1

    # get_sum(-1, 2) == 2  // -1 + 0 + 1 + 2 = 2

‘‘‘
def get_sum(a,b):
    
return sum(range(min(a, b),max(a, b)+1)) res = get_sum(3,-8) print(res)

每日練習②:get_sum