必備引數
關鍵字引數
預設引數
不定長引數
必備引數
def printme(str):
print(str)
printme('來打我呀!')
# 來打我呀!
關鍵字引數def printme(str):
print(str)
printme(str = '來打我呀')
# 來打我呀
預設引數def printme(str = '徐蓮'):
print(str)
printme()
# 徐蓮
printme(str = '劉桂香')
# 劉桂香
不定長引數
**字典、*列表
def test(x, *args):
print(x)
for i in args:
print(i)
test(1, 2, 3, 4, 5)
# 1# 2
# 3# 4
# 5
def test(x, *args):
print(x)
for i in args:
print(i)
test(1, *[2, 3, 4, 5])
# 1# 2
# 3# 4
# 5
def test(x, **kwargs):
print(x)
for k, v in kwargs.items():
print(k, v)
test(1, name = 'alex', age = 18)
# 1# name alex
# age 18
test(1, **)
# 1# name alex
# age 18
def test(x, *args, **kwargs):
print(x)
for i in args:
print(i)
for k, v in kwargs.items():
print(k, v)
test(1, 2, 3, 4, **)
# 1# 2
# 3# 4
# name alex
# age 18
python引數函式 Python函式引數總結
coding utf 8 整理一下python函式的各種引數型別 位置引數 呼叫函式時,傳入的兩個值按照位置順序依次賦給引數 def power x,n s 1 while n 0 n n 1 s s x return s print power 5,2 預設引數 簡化函式的呼叫 def power...
python 引數 Python函式 引數
python中將函式作為引數,區分將引數直接寫成函式名和函式名 的區別。def fun1 fun print print print fun 執行fun1 fun4 時,fun為函式fun3的返回值x print type fun type fun type fun fun 執行fun1 fun4 ...
函式傳引數 python 函式引數
1.位置引數 最熟悉的一種引數形式,優點 簡單。缺點 傳遞引數不夠靈活 2.預設引數 優點 提高了 的復用性 缺點 容易產生二義性 注意事項 一是必選引數在前,預設引數在後。二是如何設定預設引數。當函式有多個引數時,把變化大的引數放前面,變化小的引數放後面。變化小的引數就可以作為預設引數。def p...