gpt4 book ai didi

python - 通过带条件的生成器表达式分配两个变量?

转载 作者:行者123 更新时间:2023-11-28 17:07:20 24 4
gpt4 key购买 nike

下面的代码有一个包含各种奶酪及其数量的字典。根据预先确定的销售项目列表,代码然后打印出正在销售的奶酪总量与全价的对比。

我正在使用生成器表达式来计算总计,但我想知道是否有一种方法可以压缩我的代码以分配 sale_countfull_price_count 变量一旦有某种 if-else 条件,因为生成器的代码实际上是相同的。

cheeses = {'gouda': 3, 'cheddar': 7, 'american': 2, 'mozzarella': 5}
on_sale = ['american', 'blue cheese', 'cheddar', 'provolone', 'swiss']

# if the cheese is on sale, add its quantity to sale_count
# otherwise, add its quantity to full_price_count
sale_count = sum(qty for (cheese, qty) in cheeses.items() if cheese in on_sale)
full_price_count = sum(qty for (cheese, qty) in cheeses.items() if cheese not in on_sale)

print("Sale count: {}\nFull price count: {}".format(sale_count, full_price_count))

最佳答案

它可以在单个表达式中完成:

functools.reduce(
lambda x, y: (x[0] + y[0], x[1] + y[1]),
((qty, 0) if cheese in on_sale else (0, qty) for cheese, qty in cheeses.items()),
(0, 0))

但是,与其他可能的答案一样,这可能会真正回答为什么当两个完全清楚时,事情并不总是必须简化为一个表达式。

关于python - 通过带条件的生成器表达式分配两个变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50204495/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com