Question: Write a function that takes, as an argument, a list and a string, and returns a Boolean based on whether or not all of the
Write a function that takes, as an argument, a list and a string, and returns a Boolean based on whether or not all of the letters in the string appear somewhere in the list. Name your function findLetters(myList, myString). For example, >>> findLetters([hello, world], hold) should return True, and >>> findLetters([hello, world], down) should return False. Use python
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
