返回一个字典,以菜为关键,菜的次数作为值排序
问题描述:
def get_quantities(table_to_foods):
""" (dict of {str: list of str}) -> dict of {str: int}
The table_to_foods dict has table names as keys (e.g., 't1', 't2', and so on) and each value
is a list of foods ordered for that table.
Return a dictionary where each key is a food from table_to_foods and each
value is the quantity of that food that was ordered.
>>> get_quantities({'t1': ['Vegetarian stew', 'Poutine', 'Vegetarian stew'], 't3': ['Steak pie', 'Poutine', 'Vegetarian stew'], 't4': ['Steak pie', 'Steak pie']})
{'Vegetarian stew': 3, 'Poutine': 2, 'Steak pie': 3}
"""
food_to_quantity = {}
# Accumulate the food information here.
# I have no idea what it should be at here.
return food_to_quantity
如何正确写入此代码? 当我使用元组时,我尝试了它,但我不知道如何计算时间。返回一个字典,以菜为关键,菜的次数作为值排序
答
from collections import counter
from itertools import chain
Counter(chain(*table_to_foods.values()))
但林不知道你的老师会接受这个...
答
你要遍历在提供给您的功能字典的值项,并将其添加到您的计数字典。
def get_quantities(table_to_foods):
food_to_quantity = {}
for table_order in table_to_foods.itervalues():
for menu_item in table_order:
if menu_item in food_to_quantity:
food_to_quantity[menu_item] += 1
else:
food_to_quantity[menu_item] = 1
return food_to_quantity
如果你可以用比裸基础知识以外的东西,我会用通过Joran与collections.Counter
和itertools.chain.from_iterable
提供的方法。
答
collections
从模块Counter
类的简单的用法:
>>> def get_quantities(table_to_foods):
c = Counter()
for li in table_to_foods.values():
c.update(li)
return dict(c)
>>> get_quantities(l1)
{'Steak pie': 3, 'Poutine': 2, 'Vegetarian stew': 3}
答
import collections
orders = {'t1': ['Vegetarian stew', 'Poutine', 'Vegetarian stew'],
't3': ['Steak pie', 'Poutine', 'Vegetarian stew'],
't4': ['Steak pie', 'Steak pie']}
# We're not interested in the table numbers so can initially just produce
# a flat list.
flatorders = []
for o in orders:
flatorders += orders[o]
quantities = collections.Counter(flatorders)
# The "sorted" keyword prints the list in alphabeitcal order. If it is
# omitted the list is printed in order of quantities.
for k in sorted(quantities):
print("{:15} {:3d}".format(k, quantities[k]))