I should find a 'hello' word in a string, which I gave it from input. Here is the code that I currently have, but I cannot match 'hello' with the character list.
mylist = 'it can be any letter plus hello in it'
for letter in mylist:if letter in key:mylist2+=letter
print(mylist2)
mylist2 = ['h', 'h', 'e', 'l', 'l', 'l', 'l', 'l', 'o', 'o']