函數(shù)默認(rèn)參數(shù)
Error : non-default argument follows default argument
def sde(a='heihei',b):
print(a,b);
sde(b=1);
默認(rèn)參數(shù)要在后邊怀愧,否則會報錯独旷。
正確代碼:
def sde(b,a='heihei'):
print(a,b);
sde(b=1);
運行結(jié)果:
heihei 1
def sde(a='heihei',b):
print(a,b);
sde(b=1);
默認(rèn)參數(shù)要在后邊怀愧,否則會報錯独旷。
def sde(b,a='heihei'):
print(a,b);
sde(b=1);
heihei 1