“Python Buscar palabra en la lista” Código de respuesta

Python Buscar palabra en la lista

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

Python Buscar palabra en la 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

Respuestas similares a “Python Buscar palabra en la lista”

Preguntas similares a “Python Buscar palabra en la lista”

Más respuestas relacionadas con “Python Buscar palabra en la lista” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código