In python Put this in the code for test case: If __name__ == ‘__main__’: Print(longest_even([‘Dr. Who’, ‘She-Ra’, ‘NCIS’])) #should print out ‘She-Ra’

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
In python Put this in the code for test case: If __name__ == ‘__main__’: Print(longest_even([‘Dr. Who’, ‘She-Ra’, ‘NCIS’])) #should print out ‘She-Ra’
You have noticed that the strongest indicator of whether your friend Kai will enjoy watching a given TV show with you is the length of the title. Specifically, Kai enjoys shows where the length of the title (including spaces and punctuation) is an even number, and among those shows, the longer the title, the better.

Write a function `longest_even(shows)` that takes in a list of strings representing TV show titles, and returns the longest string with an even number of characters. If the list contains no strings with an even length, return an empty string.

For example, given the list `['Dr. Who', 'She-Ra', 'NCIS']`, the value chosen would be `'She-Ra'`, since it’s the longest string with an even length (6). `'Dr. Who'` is longer, but has an odd length (7) because we include the space and period.
Transcribed Image Text:You have noticed that the strongest indicator of whether your friend Kai will enjoy watching a given TV show with you is the length of the title. Specifically, Kai enjoys shows where the length of the title (including spaces and punctuation) is an even number, and among those shows, the longer the title, the better. Write a function `longest_even(shows)` that takes in a list of strings representing TV show titles, and returns the longest string with an even number of characters. If the list contains no strings with an even length, return an empty string. For example, given the list `['Dr. Who', 'She-Ra', 'NCIS']`, the value chosen would be `'She-Ra'`, since it’s the longest string with an even length (6). `'Dr. Who'` is longer, but has an odd length (7) because we include the space and period.
Expert Solution
Step 1

We have to write a function longest_even which will return the longest string with even length in the list passed as a parameter in python.

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Unreferenced Objects
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
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