4. find_friend_with_longest_name For the next two functions, we will work with a database of friends, where we store each friend's name and height (in cm) in a dictionary. The database as a whole is represented as a list. Here's an example list of friends for us to work with. my friends = [ {"name": "bimmy", "height": 60}, {"name": "Ian Donald Calvin Euclid Zappa", "height": 175}, In the first function, find_friend_with_longest_name, we will go through a specified list of this shape (it contains dictionaries) and select the dictionary containing the longest name. If the input list is empty (no friends were specifie then we return None. Otherwise, return the dictionary of the friend with the longest name in the list. Sample runs should look like: >>> find_friend with longest_name(my friends) {'name': 'Ian Donald Calvin Euclid Zappa', 'height': 175} >>> find friend with longest_name([]) >>>

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
Launch Meeting - Zoc X
S Launch Meeting - ZocX
O Is Everyone Really Eq xB Reading Response 6
O Ch7: Oppression & Se X Thank you for downlc X
sc.edu/courses/46018/assignments/294537
>>> find_movies_by_director(my_hovies, "Sofia Coppola")
[]
4. find_friend_with_longest_name
For the next two functions, we will work with a database of friends, where we store each friend's name and height (in
cm) in a dictionary. The database as a whole is represented as a list.
Here's an example list of friends for us to work with.
my friends =
("name": "bimmy", "height": 60},
{"name": "Ian Donald Calvin Euclid Zappa", "height": 175},
In the first function, find_friend_with_longest_name, we will go through a specified list of this shape (it contains
dictionaries) and select the dictionary containing the longest name. If the input list is empty (no friends were specified),
then we return None. Otherwise, return the dictionary of the friend with the longest name in the list.
Sample runs should look like:
>>> find friend with_longest_name (my_friends)
{'name': 'Ian Donald Calvin Euclid Zappa', 'height': 175}
>>> find friend with_longest_name ([])
>>>
5. sort_friends_by_name_length
Cuppy
Transcribed Image Text:Launch Meeting - Zoc X S Launch Meeting - ZocX O Is Everyone Really Eq xB Reading Response 6 O Ch7: Oppression & Se X Thank you for downlc X sc.edu/courses/46018/assignments/294537 >>> find_movies_by_director(my_hovies, "Sofia Coppola") [] 4. find_friend_with_longest_name For the next two functions, we will work with a database of friends, where we store each friend's name and height (in cm) in a dictionary. The database as a whole is represented as a list. Here's an example list of friends for us to work with. my friends = ("name": "bimmy", "height": 60}, {"name": "Ian Donald Calvin Euclid Zappa", "height": 175}, In the first function, find_friend_with_longest_name, we will go through a specified list of this shape (it contains dictionaries) and select the dictionary containing the longest name. If the input list is empty (no friends were specified), then we return None. Otherwise, return the dictionary of the friend with the longest name in the list. Sample runs should look like: >>> find friend with_longest_name (my_friends) {'name': 'Ian Donald Calvin Euclid Zappa', 'height': 175} >>> find friend with_longest_name ([]) >>> 5. sort_friends_by_name_length Cuppy
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Mergesort
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education