人工智能作业2021-09-15

Q1

def add(a, b):
    "Return the sum of a and b"
    "*** YOUR CODE HERE ***"
    return a + b
    # return 0

Q2

def buyLotsOfFruit(orderList):
    """
        orderList: List of (fruit, numPounds) tuples

    Returns cost of order
    """
    totalCost = 0.0
    "*** YOUR CODE HERE ***"
    for cur_fruit, cur_price in orderList:
        totalCost += cur_price * fruitPrices[cur_fruit]

    return totalCost

Q3

def shopSmart(orderList, fruitShops):
    """
        orderList: List of (fruit, numPound) tuples
        fruitShops: List of FruitShops
    """
    "*** YOUR CODE HERE ***"
    all_shops_cost = [shop.getPriceOfOrder(orderList) for shop in fruitShops]
    idx = all_shops_cost.index(min(all_shops_cost))
    return fruitShops[idx]

对Q3,第一行,先对fruitShops做列表解析,遍历每一个shop,并使用getPriceOfOrder()方法得到在该shop购物所需的总价。第二行,使用列表的index方法求出列表中元素最小值对应的下标(若有多个最小值,取第一个)。第三行,由下标获取shop对象并返回。


在这里插入图片描述

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值