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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!