主頁 > 知識(shí)庫 > Python 帶星號(hào)(* 或 **)的函數(shù)參數(shù)詳解

Python 帶星號(hào)(* 或 **)的函數(shù)參數(shù)詳解

熱門標(biāo)簽:舉辦過冬奧會(huì)的城市地圖標(biāo)注 正安縣地圖標(biāo)注app qt百度地圖標(biāo)注 遼寧智能外呼系統(tǒng)需要多少錢 400電話申請(qǐng)資格 阿里電話機(jī)器人對(duì)話 地圖地圖標(biāo)注有嘆號(hào) 電銷機(jī)器人系統(tǒng)廠家鄭州 螳螂科技外呼系統(tǒng)怎么用

1. 帶默認(rèn)值的參數(shù)

在了解帶星號(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),也可以寫成“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
 

2.帶一個(gè)星號(hào)(*)的函數(shù)參數(shù)

帶一個(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)我們直接傳元組類型的值給星號(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')

3.帶兩個(gè)星號(hào)(**)的函數(shù)參數(shù)

帶兩個(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ù)類似,在字典值前加上 “ ** ”,同時(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}

4、在有些情況下,單星號(hào)函數(shù)參數(shù)和雙星號(hào)函數(shù)參數(shù)是一起使用的:

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ù)參數(shù)詳解的文章就介紹到這了,更多相關(guān)Python 帶星號(hào)參數(shù)內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

您可能感興趣的文章:
  • Python函數(shù)參數(shù)中的*與**運(yùn)算符
  • 詳解Python 函數(shù)參數(shù)的拆解
  • Python函數(shù)參數(shù)定義及傳遞方式解析
  • python+opencv邊緣提取與各函數(shù)參數(shù)解析
  • Python 限定函數(shù)參數(shù)的類型及默認(rèn)值方式
  • python函數(shù)參數(shù)(必須參數(shù)、可變參數(shù)、關(guān)鍵字參數(shù))
  • python 編碼中為什么要寫類型注解?
  • 深入淺析Python 函數(shù)注解與匿名函數(shù)
  • Python中typing模塊與類型注解的使用方法
  • Python使用functools實(shí)現(xiàn)注解同步方法
  • Python函數(shù)參數(shù)和注解的使用

標(biāo)簽:隨州 濟(jì)源 阜新 淘寶好評(píng)回訪 合肥 興安盟 昭通 信陽

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Python 帶星號(hào)(* 或 **)的函數(shù)參數(shù)詳解》,本文關(guān)鍵詞  Python,帶,星號(hào),或,的,函數(shù),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Python 帶星號(hào)(* 或 **)的函數(shù)參數(shù)詳解》相關(guān)的同類信息!
  • 本頁收集關(guān)于Python 帶星號(hào)(* 或 **)的函數(shù)參數(shù)詳解的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章