1. 程式人生 > >函數的非固定參數

函數的非固定參數

傳遞 ont style bsp 輸出 參數 span div size

默認參數特點:調用函數的時候,默認參數非必需傳遞
def test(x,y=2):  #定義默認參數y=2
    print(x)
    print(y)

test(1,3)

輸出: 1

3

函數的非固定參數