function
p130_function
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 定义任意数量的参数(实质是将参数封装到一个元组中)
def make_pizza(*toppings): # *toppings是一个元组
print(toppings)
make_pizza('a')
make_pizza('a', 'b', 'c', 'd')
# 定义任意数量的关键字参数
def buildProfile(first, last, **user_info): # **user_info是一个字典
profile = {}
profile['first_name'] = first
profile['last_name'] = last
for k, v in user_info.items():
profile[k] = v
return profile
profile = buildProfile('fan', 'liao', location='gz', sex='man')
This post is licensed under CC BY 4.0 by the author.