Python Find Word dalam daftar
ls = ['Hello from AskPython', 'Hello', 'Hello boy!', 'Hi']
matches = [match for match in ls if "Hello" in match]
print(matches)
Tense Termite