Python学习——第四周课程作业

7-3 10的整数倍 :让用户输入一个数字,并指出这个数字是否是10的整数倍。

num = int(input('please input number: '))
if num % 10 == 0:
    print('It is a multiple of 10')
else:
    print('It isn\'t a multiple of 10')

7-9 五香烟熏牛肉(pastrami)卖完了 :使用为完成练习7-8而创建的列表sandwich_orders ,并确保’pastrami’ 在其中至少出现了三次。在程序开头附近添加这样的代码:打印一条消息,指出熟食店的五香烟熏牛肉卖完了;再使用一个while 循环将列表sandwich_orders 中的’pastrami’ 都删除。确认最终的列表finished_sandwiches 中不包含’pastrami’ 。

sandwich_orders = ['chicken', 'pastrami', 'tuna', 'pastrami', 'pastrami', 'bacon']
finished_sandwiches = []
while 'pastrami' in sandwich_orders:
    sandwich_orders.remove('pastrami')
print('Pastrami sold out today!')
while sandwich_orders:
    curnt_sandwich = sandwich_orders.pop()
    print('I made your %s sandwich' % curnt_sandwich)
    finished_sandwiches.append(curnt_sandwich)
print(finished_sandwiches)

8-6 城市名 :编写一个名为city_country() 的函数,它接受城市的名称及其所属的国家。这个函数应返回一个格式类似于下面这样的字符串:”Santiago, Chile”

def city_country(city, country):
    return city + ', ' + country

8-14 汽车 :编写一个函数,将一辆汽车的信息存储在一个字典中。这个函数总是接受制造商和型号,还接受任意数量的关键字实参。这样调用这个函数:提供必不可少的信息,以及两个名称—值对,如颜色和选装配件。这个函数必须能够像下面这样进行调用:
car = make_car('subaru', 'outback', color='blue', tow_package=True)

def make_car(manufacturer, model, **kwargs):
    car = {}
    car['manufacturer'] = manufacturer
    car['model'] = model
    for key, value in kwargs.items():
        car[key] = value
    return car

你可能感兴趣的:(Python课程作业)