Saltar al contenido

buscar texto en archivos txt con ejemplo de código Python

Si hallas algún error con tu código o proyecto, recuerda probar siempre en un ambiente de testing antes subir el código al proyecto final.

Ejemplo 1: cómo comprobar si un string está en un archivo python

defsearch_string_in_file(file_name, string_to_search):"""Search for the given string in file and return lines containing that string,
    along with line numbers"""
    line_number =0
    list_of_results =[]# Open the file in read only modewithopen(file_name,'r')as read_obj:# Read all lines in the file one by onefor line in read_obj:# For each line, check if line contains the string
            line_number +=1if string_to_search in line:# If yes, then add the line number & line as a tuple in the list
                list_of_results.append((line_number, line.rstrip()))# Return list of tuples containing line numbers and lines where string is foundreturn list_of_results

Ejemplo 2: búsqueda de archivo de texto de lectura de Python string

f =open(filename,"r")
   whattoReturn ="None"if strToFind in f.read():
      whattoReturn = strToFind

Reseñas y puntuaciones

Si te animas, tienes la opción de dejar un post acerca de qué le añadirías a esta reseña.

¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *