Question: Exercise 6 . 4 . 2 Identify Words that Start with a Letter = = = = = = = = = = = =
Exercise Identify Words that Start with a Letter
Write a function called filterwordstartwithmylist, letter that will return the list contain all words that
start with the specified letter.
For Example
filterwordstartwitha 'bye', 'above', 'Apple'a will return a 'above', 'Apple'
the presence of letter in upper case or lower case should be taken into consideration.
# DON"T REMOVE!!
testa 'bye', 'above','comma'
lettera
testA 'bye', 'above','comma'
letterA
testa 'bye', 'above', 'Apple'
lettera
# Complete the function below
def filterwordstartwithmylist, letter:
return
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
