“Python Encontre palavras na lista” Respostas de código

Python Encontre palavras na lista

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

Python Encontre palavras na lista

ls = ['Hello from AskPython', 'Hello', 'Hello boy!', 'Hi']
 
# The second parameter is the input iterable
# The filter() applies the lambda to the iterable
# and only returns all matches where the lambda evaluates
# to true
filter_object = filter(lambda a: 'AskPython' in a, ls)
 
# Convert the filter object to list
print(list(filter_object))
Tense Termite

Respostas semelhantes a “Python Encontre palavras na lista”

Perguntas semelhantes a “Python Encontre palavras na lista”

Mais respostas relacionadas para “Python Encontre palavras na lista” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código