您好,登錄后才能下訂單哦!
"""定義一個函數(shù)"""
print(''50)
print('沒有定義形參')
def test():
print('hello world')
test()
print(''50)
print('return必須定義一個變量接收返回值')
def test01():
res = 1+3
return res # 函數(shù)執(zhí)行到return后,就不會執(zhí)行return下面的代碼,所以一個函數(shù)只能定義一個return
a = test01()
print(a)
print(''50)
print('定義形參')
def test02(x,y):
result = xy
return result
b = test02(3,4)
print(b)
print(''50)
print('變量作為實參傳遞給形參')
def test03(x,y):
result = xy
return result
c=10
d=10
e = test03(c,d)
print(e)
print(''50)
print('位置關(guān)鍵字,實參與形參一一對應(yīng),缺一不可')
def test04(x,y,z):
print(x)
print(y)
print(z)
test04(1,2,3)
print(''50)
print('關(guān)鍵字參數(shù)與形參的位置無關(guān),形參與實參的數(shù)量相同,缺一不可')
def test05(x,y,z):
print(x)
print(y)
print(z)
test05(y=3,x=5,z=8)
print(''50)
print('默認形參,如果實參沒有傳入?yún)?shù),就會執(zhí)行默認的值,如果實參傳入新的參數(shù)就會覆蓋默認的參數(shù)')
def test06(x,z,y=5):
print(x)
print(y)
print(z)
test06(8,9)
print(''50)
print('關(guān)鍵字參數(shù)與位置參數(shù)混搭,傳入實參時位置參數(shù)必須在關(guān)鍵字左邊,否則會報錯')
def test07(x,y,z):
print(x)
print(y)
print(z)
test07(77,88,z=8)
#test07(z=44,55,66) # 報錯
print(''50)
print('參數(shù)組,字典,列表')
def test08(x,args):
print(x)
print(args)
test08(1,11,22,33,44)
test08(1,(12,84,87,45)) # 把元組當(dāng)成一個整體傳遞給args
test08(44,[46,87,44,878])#把列表當(dāng)成一個整體傳遞給args
test08(544,[54,779,97974,4446]) # 相當(dāng)于執(zhí)行for 循環(huán)把列表復(fù)制給args
test08(877,{'aa':44})# 當(dāng)于執(zhí)行for 循環(huán)把字典的key傳給給args
print(''50)
print('字典與列表混搭,寫形參時列表必須在字典的左邊')
def test09(x,args,**kwargs):
print(x)
print(args)
print(kwargs)
test09(1,544,54,4646,46,5464,{'bbb':55454},cc=656,dd=4949)
test09(464,*[4694,4664,5555,54],**{'ee':49797})
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。