Write a function short_words(words) which takes in a list of strings, and returns a list of only the strings in the original that are less than 5 characters long. Your entire file can be at most two lines long, so you should use list comprehensions or filter to accomplish this. Submit your code in a file called ex14-4.py to Gradescope. Hints: Read the lecture slides or look at zyBooks optional section 8.7 if you’re unclear on how to use list comprehensions Examples: >>> short_words(['zany', 'bridge', 'one', 'at', 'zero']) ['zany', 'one', 'at', 'zero'] >>> short_words([]) [] >>> short_words(['four', 'score', 'and', 'seven', 'years', 'ago']) ['four', 'and', 'ago']

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter8: Arrays
Section: Chapter Questions
Problem 5PE
icon
Related questions
Question
Write a function short_words(words) which takes in a list of strings, and returns a list of only the strings in the original that are less than 5 characters long. Your entire file can be at most two lines long, so you should use list comprehensions or filter to accomplish this. Submit your code in a file called ex14-4.py to Gradescope. Hints: Read the lecture slides or look at zyBooks optional section 8.7 if you’re unclear on how to use list comprehensions Examples: >>> short_words(['zany', 'bridge', 'one', 'at', 'zero']) ['zany', 'one', 'at', 'zero'] >>> short_words([]) [] >>> short_words(['four', 'score', 'and', 'seven', 'years', 'ago']) ['four', 'and', 'ago']
Expert Solution
steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Linked List Representation
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
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT