Question: Write a function named evenLengths that takes a single parameter, stringList (a list of strings) and returns a list of the strings in stringList that
Write a function named evenLengths that takes a single parameter, stringList (a list of strings) and returns a list of the strings in stringList that are of even length.
For example, the following would be correct input and output for the function evenLengths.
song = ['happy', 'birthday', 'to', 'you']
print(evenLengths(song))
['birthday', 'to']
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
