1. 程式人生 > >python 函數 練習

python 函數 練習

turn 數字 urn rgs 為什麽 python 函數 span 練習 func

# 2、寫函數,接收n個數字,求這些參數數字的和。
def sum_func(*args):
    total = 0
    for i in args:
        total += i
    return total
print(sum_func(1,2,3,8,23,6))

# 3、讀代碼,回答:代碼中,打印出來的值a,b,c分別是什麽?為什麽?
#     a=10
#     b=20
#     def test5(a,b):
#          print(a,b)
#     c = test5(b,a)
#     print(c)



# 4、讀代碼,回答:代碼中,打印出來的值a,b,c分別是什麽?為什麽?
# a=10 # b=20 # def test5(a,b): # a=3 # b=5 # print(a,b) # c = test5(b,a) # print(c)

python 函數 練習