函数4传递可变数量的参数-python进阶篇四
有时候,你预先不知道函数需要接受多少个实参,好在Python允许函数从调用语句中收集任意数量的实参。
变量赋值的一个例子:
a, *b, c = 1, 2, 3, 4, 5, 6
print(a, b, c) # 1 [2, 3, 4, 5] 6
a, b, *c = 1, 2, 3, 4, 5, 6
print(a, b, c) # 1 2 [3, 4, 5, 6]
*a, b, c = 1, 2, 3, 4, 5, 6
print(a, b, c) # [1, 2, 3, 4] 5 6
求和: 装包的例子
def get_sum(*args):
s = 0
for i in args:
s += i
print(s)
get_sum(2, 5, 8, 9, 6) # 30
求和: 拆包的例子
nums = [22, 52, 69, 21, 88, 36]
def set_sum(*args):
s = 0
for i in args:
s += i
print(s)
# set_sum(nums) # 直接把列表作为参数会报错:TypeError: unsupported operand type(s) for +=: 'int' and 'list'
# 把列表进行拆包
set_sum(*nums) # 288
形参名*toppings 中的星号让Python创建一个名为toppings 的空元组,并将收到的所有值都封装到这个元组中。注意,Python将实参封装到一个元组中,即便函数只收到一个值也如此。
def make_pizza(*toppings):
"""概述要制作的比萨"""
print("\nMaking a pizza with the following toppings:")
for topping in toppings:
print("- " + topping)
make_pizza('pepperoni')
make_pizza('mushrooms', 'green peppers', 'extra cheese')
'''
Making a pizza with the following toppings:
- pepperoni
Making a pizza with the following toppings:
- mushrooms
- green peppers
- extra cheese
'''
结合使用位置实参和任意数量实参 - *args,就是放入列表
例如,如果前面的函数还需要一个表示比萨尺寸的实参,必须将该形参放在形参*toppings 的前面:
def make_pizza(size, *toppings):
"""概述要制作的比萨"""
print("\nMaking a " + str(size) +
"-inch pizza with the following toppings:")
for topping in toppings:
print("- " + topping)
make_pizza(16, 'pepperoni')
make_pizza(12, 'mushrooms', 'green peppers', 'extra cheese')
'''
Making a 16-inch pizza with the following toppings:
- pepperoni
Making a 12-inch pizza with the following toppings:
- mushrooms
- green peppers
- extra cheese
'''
使用任意数量的关键字实参- **kwargs,就是放入字典
有时候,需要接受任意数量的实参,但预先不知道传递给函数的会是什么样的信息。在这种情况下,可将函数编写成能够接受任意数量的键—值对——调用语句提供了多少就接受多少。一个这样的示例是创建用户简介:你知道你将收到有关用户的信息,但不确定会是什么样的信息。在下面的示例中,函数build_profile() 接受名和姓,同时还接受任意数量的关键字实参:
def build_profile(first, last, **user_info):
"""创建一个字典,其中包含我们知道的有关用户的一切"""
profile = {}
profile['first_name'] = first
profile['last_name'] = last
for key, value in user_info.items():
profile[key] = value
return profile
user_profile = build_profile('albert', 'einstein',location='princeton',field='physics')
print(user_profile)
'''
{'first_name': 'albert', 'last_name': 'einstein',
'location': 'princeton', 'field': 'physics'}
'''
# 装包
def show_book(**kwargs):
for k, v in kwargs.items():
print(k, v)
show_book(book_name='西游记', author='吴承恩', number=5)
'''
book_name 西游记
author 吴承恩
number 5
'''
print('-*' * 50)
# 拆包
book = {'book_name': '红楼梦', 'author': '曹雪芹', 'number': 2}
show_book(**book)
'''
book_name 红楼梦
author 曹雪芹
number 2
'''
*args和**kwargs同时使用
def show_book(*args, **kwargs): print(args) print(kwargs) print('{}拥有{}这本书'.format(args, kwargs)) book = {'book_name': '西游记', 'author': '吴承恩', 'number': 5} show_book('张三', '李四', **book) ''' ('张三', '李四') {'book_name': '西游记', 'author': '吴承恩', 'number': 5} ('张三', '李四')拥有{'book_name': '西游记', 'author': '吴承恩', 'number': 5}这本书 ''' # 系统函数的多参数运用 # print(*,**) format(*,**) print(book, 'hello', sep='-*') # {'book_name': '西游记', 'author': '吴承恩', 'number': 5}-*hello print('{}-{}-{}'.format('AA', 'BB', 'CC')) # AA-BB-CC print('{name}-{age}-{sex}'.format(name='张三', age='20', sex='男')) # 张三-20-男 print("-".join(["张三", '李四', '王五'])) # 张三-李四-王五