IT培訓(xùn)網(wǎng)
IT在線學(xué)習(xí)
1)可變位置參數(shù)
在Python中,函數(shù)在定義時可以擁有任意數(shù)量的參數(shù),這種參數(shù)稱為可變參數(shù)?梢酝ㄟ^定義可變參數(shù),來接收調(diào)用函數(shù)時多余的參數(shù)?勺儏(shù)又分為可變位置參數(shù)和可變關(guān)鍵字參數(shù),它們的區(qū)別如下:
①可變位置參數(shù)用來接收調(diào)用函數(shù)時多余的位置參數(shù);在函數(shù)體內(nèi),可變位置參數(shù)是一個元組。
②可變關(guān)鍵字參數(shù)用來接收調(diào)用函數(shù)時多余的關(guān)鍵字參數(shù);在函數(shù)體內(nèi),可變關(guān)鍵字參數(shù)是一個字典。
可變位置參數(shù)是在普通的參數(shù)前面加一個星號“*”,一般命名為args(arguments的縮寫),但實際上它可以用任意合法的名稱:
- >>> def f(*args): # *args是可變位置參數(shù)
- ... print(args) # 打印args
- ... print(type(args)) # 打印args的類型
- ... for i in args: # 迭代元組
- ... print(i)
- ...
- >>> f('Python', 42, 3.14)
- ('Python', 42, 3.14)
- <class 'tuple'>
- Python
- 42
- 3.14
由運(yùn)行結(jié)果可知,可變位置參數(shù)在函數(shù)體內(nèi)是一個元組。另外,函數(shù)體內(nèi)的args不需要加星號。
在定義函數(shù)時,如果不確定所需要的參數(shù)個數(shù),那么可以使用可變參數(shù)。假設(shè)要寫一個算術(shù)加法運(yùn)算的程序,不使用可變參數(shù)時,只能將確定個數(shù)的數(shù)字相加:
- >>> def add_numbers(a, b, c): # 這個函數(shù)只能讓三個數(shù)字相加
- ... print(a + b + c)
- ...
- >>> add_numbers(1, 2, 3)
- 6
如果使用可變參數(shù),那么可以實現(xiàn)讓任意個數(shù)的數(shù)字相加:
- >>> def add_numbers(*numbers): # 將可變位置參數(shù)命名為numbers
- ... sum = 0
- ... for i in numbers: # 由于numbers是元組,因此,可以使用for循環(huán)迭代
- ... sum += i
- ... print(sum)
- ...
- >>> add_numbers(1, 2, 3, 4, 5, 6)
- 21
- >>> add_numbers(42, 19, 25)
- 86
- >>> add_numbers() # 可變位置參數(shù)也可以傳遞0個參數(shù)
- 0
可變位置參數(shù)可以與普通的參數(shù)混用。假設(shè)要打印一份水果店的公告,其中第一個參數(shù)是普通的參數(shù),代表水果店的名字,第二個參數(shù)是可變位置參數(shù),用來接收除了水果店名字之外的其他位置參數(shù):
- >>> def fruit_shop(shop_name, *fruits):
- ... print('{0}水果店開業(yè)啦!'.format(shop_name))
- ... print('在售的水果有:')
- ... for fruit in fruits:
- ... print(fruit)
- ...
- >>> fruit_shop('小明', '蘋果', '香蕉', '西瓜')
- 小明水果店開業(yè)啦!
- 在售的水果有:
- 蘋果
- 香蕉
- 西瓜
函數(shù)調(diào)用時,'小明'被shop_name接收,剩余的值都被*fruits接收,并存儲在fruits元組中。
2)可變關(guān)鍵字參數(shù)
可變關(guān)鍵字參數(shù)是在普通的參數(shù)前面加兩個星號“**”,一般命名為kwargs(keyword arguments的縮寫),但實際上它可以用任意合法的名稱:
- >>> def f(**kwargs): # **kwargs是可變關(guān)鍵字參數(shù)
- ... print(kwargs)
- ... print(type(kwargs)) # 打印kwargs的類型
- ... for k, w in kwargs.items(): # 迭代字典
- ... print('{0}--{1}'.format(k, w))
- ...
- >>> f(name='Ming', age=19) # 使用關(guān)鍵字參數(shù)才能將值存儲到kwargs中
- {'name': 'Ming', 'age': 19}
- <class 'dict'>
- name--Ming
- age--19
- >>> f() # 可變關(guān)鍵字參數(shù)也可以傳遞0個參數(shù)
- {}
可變關(guān)鍵字參數(shù)可以與普通的參數(shù)混用。假設(shè)在前面的“水果店”程序中,不僅打印水果的名稱,還打印水果的個數(shù):
- >>> def fruit_shop_v2(shop_name, **fruits):
- ... print('{0}水果店開業(yè)啦!'.format(shop_name))
- ... print('在售的水果有:')
- ... for fruit, count in fruits.items(): # 迭代字典
- ... print('{0}{1}個'.format(fruit, count))
- ...
- >>> fruit_shop_v2(shop_name='小明', 蘋果=10, 香蕉=3, 橘子=201)
- 小明水果店開業(yè)啦!
- 在售的水果有:
- 蘋果10個
- 香蕉3個
- 橘子201個
下面是一個更復(fù)雜的“水果店”程序,四個參數(shù)中,shop_name代表商店名稱,open_time代表開業(yè)時間,*fruits代表水果種類,**other_info代表水果店還想打印的額外信息:
- >>> def fruit_shop_v3(shop_name, open_time='10月1日', *fruits, **other_info):
- ... print('{0}水果店將在{1}開業(yè)!'.format(shop_name, open_time))
- ... if fruits:
- ... print('在售的水果有:')
- ... for fruit in fruits:
- ... print(fruit)
- ... if other_info:
- ... print('以下是額外信息:')
- ... for item, info in other_info.items():
- ... print('{0}:{1}'.format(item, info))
- ...
- >>> fruit_shop_v3('小明') # shop_name既沒默認(rèn)值,又不是可變參數(shù),故不能缺省
- 小明水果店將在10月1日開業(yè)!
- >>> fruit_shop_v3('小明', '1月1日') # 提供shop_name和open_time
- 小明水果店將在1月1日開業(yè)!
- >>> fruit_shop_v3(open_time='1月1日') # 如果不指定shop_name的值,會報錯
- Traceback (most recent call last):
- File "<stdin>", line 1, in <module>
- TypeError: fruit_shop_v3() missing 1 required positional argument: 'shop_name'
- >>> fruit_shop_v3('小明', '蘋果', '香蕉', '橘子')
- 小明水果店將在蘋果開業(yè)!
- 在售的水果有:
- 香蕉
- 橘子
- >>> fruit_shop_v3('小明', '10月1日', '蘋果', '香蕉', '橘子')
- 小明水果店將在10月1日開業(yè)!
- 在售的水果有:
- 蘋果
- 香蕉
- 橘子
- >>>
- >>> fruit_shop_v3('小明', '10月1日', '蘋果', '香蕉', 地址='北京市', 開店折扣='八折') # 多余參數(shù)全部被**other_info接收
- 小明水果店將在10月1日開業(yè)!
- 在售的水果有:
- 蘋果
- 香蕉
- 以下是額外信息:
- 地址:北京市
- 開店折扣:八折
>>本文地址:http://liujunjsxg.cn/zhuanye/2021/66399.html
聲明:本站稿件版權(quán)均屬中公教育優(yōu)就業(yè)所有,未經(jīng)許可不得擅自轉(zhuǎn)載。
1 您的年齡
2 您的學(xué)歷
3 您更想做哪個方向的工作?