lettersGuessed is a list of letters
def isWordGuessed(secretWord, lettersGuessed):
listA = {'a','b','c','p','o','e','p','l'}
abc = "apple"
now if (some or all of) the letters guessed in the list (listA) are INCLUDED in all the letters (Chars) in the string, then it is supposed to return a true boolean...
but everytime I do this question I keep on getting a false return...even though the above example should CLEARLY return "true"
so can any1 out there help me please?
Thnx a lot!!!