?
#8-13 用户简介:复制前面的程序 user_profile.py,在其中调用 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)
personal_information = build_profile('liu','xing',
height = 175,
appearance = 'handsome',
voice = 'singing')
print(personal_information)
#8-14 汽车:编写一个函数,将一辆汽车的信息存储在一个字典中。这个函数总是接
#受制造商和型号,还接受任意数量的关键字实参。这样调用这个函数:提供必不可少的
#信息,以及两个名称—值对,如颜色和选装配件。这个函数必须能够像下面这样进行调用:
def car_information(manufacturer,model,**car_info):
carfile = {}
carfile['manufacturer'] = manufacturer
carfile['model'] = model
print(car_info.items())
for i , j in car_info.items():
carfile[i] = j
return carfile
car = car_information('dazhong','pasate',
color = 'bule',
seat = 'four')
print(car)
|