您好,登錄后才能下訂單哦!
這篇文章主要介紹了如何在Python中使用帶星號(* 或 **)的函數,此處通過實例代碼給大家介紹的非常詳細,對大家的學習或工作具有一定的參考價值,需要的朋友可以參考下:
Python是一種編程語言,內置了許多有效的工具,Python幾乎無所不能,該語言通俗易懂、容易入門、功能強大,在許多領域中都有廣泛的應用,例如最熱門的大數據分析,人工智能,Web開發等。
在了解帶星號(*)的參數之前,先看下帶有默認值的參數,函數定義如下:
>> def defaultValueArgs(common, defaultStr = "default", defaultNum = 0): print("Common args", common) print("Default String", defaultStr) print("Default Number", defaultNum)
(1)帶默認值的參數(defaultStr、defaultNum)不傳參時的調用:
>> defaultValueArgs("Test") Common args Test Default String default Default Number 0
(2)帶默認值的參數(defaultStr、defaultNum),調用的時候可以直接傳參(如下例中的defaultStr),也可以寫成“argsName = value”的形式(如下例中的defaultNum):
>> defaultValueArgs("Test", "Str", defaultNum = 1) Common args Test Default String Str Default Number 1 >> defaultValueArgs("Test", defaultNum = 1) Common args Test Default String default Default Number 1
注意:在函數定義時,第一個帶有默認值的參數之后的所有參數都必須有默認值,否則,運行時報錯。
>> def defaultValueArgs(common, defaultStr = "default", defaultNum): print("Common args", common) print("Default String", defaultStr) print("Default Number", defaultNum) SyntaxError: non-default argument follows default argument
帶一個參數的函數定義如下:
>> def singalStar(common, *rest): print("Common args: ", common) print("Rest args: ", rest)
(1)帶星號(*)的參數不傳參:
>> singalStar("hello") Common args: hello Rest args: ()
帶星號(*)的參數不傳參時默認是一個空的元組。
(2)帶星號(*)的參數傳入多個值時(個數大于或等于函數定義時的參數個數):
>> singalStar("hello", "world", 000) Common args: hello Rest args: ('world', 0)
不難看出,第二種方式中,星號參數把接收的多個參數合并為一個元組。
(3)當我們直接傳元組類型的值給星號參數時:
>> singalStar("hello", ("world", 000)) Common args: hello Rest args: (('world', 0),)
此時,傳遞的元組值作為了星號參數的元組中的一個元素。
(4)如果我們想把元組作為星號參數的參數值,在元組值前加上" * " 即可。
>> singalStar("hello", *("world", 000)) Common args: hello Rest args: ('world', 0) >> singalStar("hello", *("world", 000), "123") Common args: hello Rest args: ('world', 0, '123')
帶兩個星號(**)的函數定義如下:
>> def doubleStar(common, **double): print("Common args: ", common) print("Double args: ", double)
(1)雙星號(**)參數不傳值:
>> doubleStar("hello") Common args: hello Double args: {}
帶雙星號(**)的參數不傳值時默認是一個空的字典。
(2)雙星號(**)參數傳入多個參數時(個數大于或等于函數定義時的參數個數):
>> doubleStar("hello", "Test", 24) TypeError: doubleStar() takes 1 positional argument but 3 were given >> doubleStar("hello", x = "Test", y = 24) Common args: hello Double args: {'x': 'Test', 'y': 24}
可以看到,雙星號參數把接收的多個參數合并為一個字典,但與單星號不同的是,此時必須采用默認值傳參的 “ args = value ” 的方式,“ = ” 前的字段成了字典的鍵,“ = ” 后的字段成了字典的值。
(3)如果想把字典作為星號參數的參數值,那么該怎么辦呢?與單星號參數類似,在字典值前加上 “ ** ”,同時其后不能添加任何值。
>> doubleStar("hello", {"name": "Test", "age": 24}) TypeError: doubleStar() takes 1 positional argument but 2 were given >> doubleStar("hello", **{"name": "Test", "age": 24}, {"name": "Test2", "age": 24}) SyntaxError: positional argument follows keyword argument unpacking >> doubleStar("hello", **{"name": "Test", "age": 24}, **{"name": "Test2", "age": 24}) TypeError: doubleStar() got multiple values for keyword argument 'name' >> doubleStar("hello", **{"name": "Test", "age": 24}) Common args: hello Double args: {'name': 'Test', 'age': 24}
def singalAndDoubleStar(common, *single, **double): print("Common args: ", common) print("Single args: ", single) print("Double args: ", double) singalAndDoubleStar("hello") # Common args: hello # Single args: () # Double args: {} singalAndDoubleStar("hello", "world", 000) # Common args: hello # Single args: ('world', 0) # Double args: {} singalAndDoubleStar("hello", "world", 000, {"name": "Test", "age": 24}) # Common args: hello # Single args: ('world', 0, {'name': 'Test', 'age': 24}) # Double args: {} singalAndDoubleStar("hello", "world", 000, **{"name": "Test", "age": 24}) # Common args: hello # Single args: ('world', 0) # Double args: {'name': 'Test', 'age': 24} singalAndDoubleStar("hello", ("world", 000), {"name": "Test", "age": 24}) # Common args: hello # Single args: (('world', 0), {'name': 'Test', 'age': 24}) # Double args: {} singalAndDoubleStar("hello", *("world", 000), {"name": "Test", "age": 24}) # Common args: hello # Single args: ('world', 0, {'name': 'Test', 'age': 24}) # Double args: {} singalAndDoubleStar("hello", *("world", 000), **{"name": "Test", "age": 24}) # Common args: hello # Single args: ('world', 0) # Double args: {'name': 'Test', 'age': 24}
到此這篇關于如何在Python中使用帶星號(* 或 **)的函數的文章就介紹到這了,更多相關如何在Python中使用帶星號(* 或 **)的函數的內容請搜索億速云以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持億速云!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。