8.5 传递任意数量的实参

8-12 三明治:编写一个函数,它接受顾客要在三明治中添加的一系列食材。这个
函数只有一个形参(它收集函数调用中提供的所有食材),并打印一条消息,对顾客点
的三明治进行概述。调用这个函数三次,每次都提供不同数量的实参。

def sandwishes(*toppings):

    for topping in toppings:
        print("Making a sandwish with the following toppings: " + topping)

sandwishes("mushrooms","fish","chicken")

8-13 用户简介:复制前面的程序 user_profile.py,在其中调用 build_profile()
创建有关你的简介;调用这个函数时,指定你的名和姓,以及三个描述你的键
值对。

def build_profile(first,last,**user_info):


    profile = {}
    profile["firstname"] = first
    profile["lastname"] = last

    for key,value in user_info.items():
        profile[key] = value

    return profile

user_profile = build_profile("jim","green",locantion = "franch",age = 28 )
print(user_profile)
8-14 汽车:编写一个函数,将一辆汽车的信息存储在一个字典中。这个函数总是接
受制造商和型号,还接受任意数量的关键字实参。这样调用这个函数:提供必不可少的
信息,以及两个名称
值对,如颜色和选装配件。这个函数必须能够像下面这样进行调用:
car = make_car('subaru', 'outback', color='blue', tow_package=True)
打印返回的字典,确认正确地处理了所有的信息。

def make_car(brand,modle,**other_infos):

    cars = {}
    cars["brand_name"] = brand
    cars["modle_name"] = modle

    for key, value in other_infos.items():

        cars[key] = value
    
    return cars


car = make_car('subaru', 'outback', color='blue', tow_package=True)

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值