溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python中怎么傳遞函數(shù)參數(shù)

發(fā)布時間:2021-07-14 15:01:09 來源:億速云 閱讀:113 作者:Leah 欄目:編程語言

今天就跟大家聊聊有關Python中怎么傳遞函數(shù)參數(shù),可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。

函數(shù)參數(shù)的使用又有倆個方面值得注意:

  1. >>> def printpa(**a):  

  2. ...    print type(a)  

  3. ...    print a  

  4. ...   

  5. >>> printpa(a=1,y=2)  

  6. <type 'dict'> 

  7. F(arg1,arg2,...)

  8. {'a': 1, 'y': 2}  

  9. >>> printpa(a=1)  

  10. <type 'dict'> 

  11. {'a': 1}  

  12. >>> li=[1,2,3,4]  

  13. >>> printpa(b=li)  

  14. <type 'dict'> 

  15. {'b': [1, 2, 3, 4]}  

  16. >>> tu=(1,2,3)  

  17. >>> printpa(b=tu)  

  18. <type 'dict'> 

  19. {'b': (1, 2, 3)}  

  20. >>> printpa(1,2)  

  21. Traceback (most recent call last):  

  22.   File "<stdin>", line 1, in <module> 

  23. TypeError: printpa() takes exactly 0 arguments (2 given)  


F(arg1,arg2=value2,...)

是最常見的定義方式,一個函數(shù)可以定義任意個參數(shù),每個參數(shù)間用逗號分割,用這種方式定義的函數(shù)在調用的的時候也必須在函數(shù)名后的小括號里提供個數(shù)相等的值(實際參數(shù)),而且順序必須相同,也就是說在這種調用方式中,形參和實參的個數(shù)必須一致,而且必須一一對應,也就是說***個形參對應這***個實參。例如:

def a(x,y):  print x,y

調用該Python函數(shù)參數(shù),a(1,2)則x取1,y取2,形參與實參相對應,如果a(1)或者a(1,2,3)則會報錯。再看下面的例子:

>>> a=(1,2,3)  >>> def printpa(a):  ... print type(a)  ... print a  ...   >>> printpa(a)  <type 'tuple'> (1, 2, 3)  >>> printpa(range(1,4))  <type 'list'> [1, 2, 3]  >>> printpa({})  <type 'dict'> {}  >>> def printpa(a,b,c):  ... print a,b,c  ...   >>> printpa(a)  Traceback (most recent call last):  File "<stdin>", line 1, in <module> TypeError: printpa() takes exactly 3 arguments (1 given)  >>> printpa(*a)  1 2 3  >>> a=[1,2,3]  >>> printpa(*a)  1 2 3  >>> printpa(a)  Traceback (most recent call last):  File "<stdin>", line 1, in <module> TypeError: printpa() takes exactly 3 arguments (1 given)  >>> a=[1,2,3,4]  >>> printpa(*a)  Traceback (most recent call last):  File "<stdin>", line 1, in <module> TypeError: printpa() takes exactly 3 arguments (4 given)  >>> printpa(*range(1,4))  1 2 3

看完上述內(nèi)容,你們對Python中怎么傳遞函數(shù)參數(shù)有進一步的了解嗎?如果還想了解更多知識或者相關內(nèi)容,請關注億速云行業(yè)資訊頻道,感謝大家的支持。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI