這篇文章主要介紹了如何在Python中使用帶星號(hào)(* 或 **)的函數(shù),此處通過(guò)實(shí)例代碼給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考價(jià)值,需要的朋友可以參考下:
創(chuàng)新互聯(lián)是專(zhuān)業(yè)的修水網(wǎng)站建設(shè)公司,修水接單;提供成都做網(wǎng)站、網(wǎng)站設(shè)計(jì),網(wǎng)頁(yè)設(shè)計(jì),網(wǎng)站設(shè)計(jì),建網(wǎng)站,PHP網(wǎng)站建設(shè)等專(zhuān)業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行修水網(wǎng)站開(kāi)發(fā)網(wǎng)頁(yè)制作和功能擴(kuò)展;專(zhuān)業(yè)做搜索引擎喜愛(ài)的網(wǎng)站,專(zhuān)業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來(lái)合作!Python是一種編程語(yǔ)言,內(nèi)置了許多有效的工具,Python幾乎無(wú)所不能,該語(yǔ)言通俗易懂、容易入門(mén)、功能強(qiáng)大,在許多領(lǐng)域中都有廣泛的應(yīng)用,例如最熱門(mén)的大數(shù)據(jù)分析,人工智能,Web開(kāi)發(fā)等。
在了解帶星號(hào)(*)的參數(shù)之前,先看下帶有默認(rèn)值的參數(shù),函數(shù)定義如下:
>> def defaultValueArgs(common, defaultStr = "default", defaultNum = 0): print("Common args", common) print("Default String", defaultStr) print("Default Number", defaultNum)
(1)帶默認(rèn)值的參數(shù)(defaultStr、defaultNum)不傳參時(shí)的調(diào)用:
>> defaultValueArgs("Test") Common args Test Default String default Default Number 0
(2)帶默認(rèn)值的參數(shù)(defaultStr、defaultNum),調(diào)用的時(shí)候可以直接傳參(如下例中的defaultStr),也可以寫(xiě)成“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
注意:在函數(shù)定義時(shí),第一個(gè)帶有默認(rèn)值的參數(shù)之后的所有參數(shù)都必須有默認(rèn)值,否則,運(yùn)行時(shí)報(bào)錯(cuò)。
>> 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
帶一個(gè)參數(shù)的函數(shù)定義如下:
>> def singalStar(common, *rest): print("Common args: ", common) print("Rest args: ", rest)
(1)帶星號(hào)(*)的參數(shù)不傳參:
>> singalStar("hello") Common args: hello Rest args: ()
帶星號(hào)(*)的參數(shù)不傳參時(shí)默認(rèn)是一個(gè)空的元組。
(2)帶星號(hào)(*)的參數(shù)傳入多個(gè)值時(shí)(個(gè)數(shù)大于或等于函數(shù)定義時(shí)的參數(shù)個(gè)數(shù)):
>> singalStar("hello", "world", 000) Common args: hello Rest args: ('world', 0)
不難看出,第二種方式中,星號(hào)參數(shù)把接收的多個(gè)參數(shù)合并為一個(gè)元組。
(3)當(dāng)我們直接傳元組類(lèi)型的值給星號(hào)參數(shù)時(shí):
>> singalStar("hello", ("world", 000)) Common args: hello Rest args: (('world', 0),)
此時(shí),傳遞的元組值作為了星號(hào)參數(shù)的元組中的一個(gè)元素。
(4)如果我們想把元組作為星號(hào)參數(shù)的參數(shù)值,在元組值前加上" * " 即可。
>> singalStar("hello", *("world", 000)) Common args: hello Rest args: ('world', 0) >> singalStar("hello", *("world", 000), "123") Common args: hello Rest args: ('world', 0, '123')
帶兩個(gè)星號(hào)(**)的函數(shù)定義如下:
>> def doubleStar(common, **double): print("Common args: ", common) print("Double args: ", double)
(1)雙星號(hào)(**)參數(shù)不傳值:
>> doubleStar("hello") Common args: hello Double args: {}
帶雙星號(hào)(**)的參數(shù)不傳值時(shí)默認(rèn)是一個(gè)空的字典。
(2)雙星號(hào)(**)參數(shù)傳入多個(gè)參數(shù)時(shí)(個(gè)數(shù)大于或等于函數(shù)定義時(shí)的參數(shù)個(gè)數(shù)):
>> 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}
可以看到,雙星號(hào)參數(shù)把接收的多個(gè)參數(shù)合并為一個(gè)字典,但與單星號(hào)不同的是,此時(shí)必須采用默認(rèn)值傳參的 “ args = value ” 的方式,“ = ” 前的字段成了字典的鍵,“ = ” 后的字段成了字典的值。
(3)如果想把字典作為星號(hào)參數(shù)的參數(shù)值,那么該怎么辦呢?與單星號(hào)參數(shù)類(lèi)似,在字典值前加上 “ ** ”,同時(shí)其后不能添加任何值。
>> 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}
到此這篇關(guān)于如何在Python中使用帶星號(hào)(* 或 **)的函數(shù)的文章就介紹到這了,更多相關(guān)如何在Python中使用帶星號(hào)(* 或 **)的函數(shù)的內(nèi)容請(qǐng)搜索創(chuàng)新互聯(lián)網(wǎng)站建設(shè)公司,以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持創(chuàng)新互聯(lián)網(wǎng)站建設(shè)公司,!