“Pesquisa Python por string no arquivo” Respostas de código

Pesquisa Python por string no arquivo

with open('example.txt') as f:
    if 'blabla' in f.read():
        print("true")
Agreeable Ant

Python: Pesquise Arquivo de String

import mmap

with open('example.txt') as f:
    s = mmap.mmap(f.fileno(), 0, access=mmap.ACCESS_READ)
    if s.find('blabla') != -1:
        print('true')
structure

Respostas semelhantes a “Pesquisa Python por string no arquivo”

Perguntas semelhantes a “Pesquisa Python por string no arquivo”

Procure respostas de código populares por idioma

Procurar outros idiomas de código