>> friend1 = Friend ("sarah", 165)>>> friend1.add_favorite_food ("strawberries")>>> friend2 - Friend ("dweezil", 175)>>> friend2.add_favorite_food("pizza")>>> friend3 = Friend("bimmy", 60)>>>...


7. group_friends_by_food<br>For this problem, you are given a mostly-working version of the Friend and FriendsDB classes from hw6 and hw7, and<br>we will add new method to FriendsDB -- group_friends_by_food. group_friends_by_food returns a dictionary mapping<br>from each of the favorite foods enjoyed by any friend to a list of the friends who enjoy that food, sorted in alphabetical<br>order. (You can use the friends_who_love method to generate these lists.)<br>A sample run should look like this:<br>|>>> friend1 = Friend (>> friend1.add_favorite_food ("strawberries") >>> friend2 - Friend ("dweezil", 175) >>> friend2.add_favorite_food("pizza") >>> friend3 = Friend("bimmy", 60) >>> friend3.add_favorite_food("pizza") >>> friend3.add_favorite_food("strawberries") >>> db = FriendsDB() >>> db.add friend (friend1) >>> db.add_friend(friend2) >>> db.add friend(friend3) >>> db.group_friends_by_food() {'strawberries': ['bimmy', 'sarah'], 'pizza': [' bimmy', 'dweezil']} "/>
Extracted text: 7. group_friends_by_food For this problem, you are given a mostly-working version of the Friend and FriendsDB classes from hw6 and hw7, and we will add new method to FriendsDB -- group_friends_by_food. group_friends_by_food returns a dictionary mapping from each of the favorite foods enjoyed by any friend to a list of the friends who enjoy that food, sorted in alphabetical order. (You can use the friends_who_love method to generate these lists.) A sample run should look like this: |>>> friend1 = Friend ("sarah", 165) >>> friend1.add_favorite_food ("strawberries") >>> friend2 - Friend ("dweezil", 175) >>> friend2.add_favorite_food("pizza") >>> friend3 = Friend("bimmy", 60) >>> friend3.add_favorite_food("pizza") >>> friend3.add_favorite_food("strawberries") >>> db = FriendsDB() >>> db.add friend (friend1) >>> db.add_friend(friend2) >>> db.add friend(friend3) >>> db.group_friends_by_food() {'strawberries': ['bimmy', 'sarah'], 'pizza': [' bimmy', 'dweezil']}

Jun 11, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here