“Le fichier texte Python contient” Réponses codées

Comment vérifier un mot particulier dans un fichier texte à l'aide de Python

file = open("search.txt")
    print(file.read())
    search_word = input("enter a word you want to search in file: ")
    if(search_word in file.read()):
        print("word found")
    else:
        print("word not found")
Faithful Fowl

Le fichier texte Python contient

from pathlib import Path

for file_path in Path('src').glob('**/*.c'):
    print(file_path) # do whatever you need with these files
DreamCoder

Le fichier texte Python contient

import os
import fnmatch


def recursive_glob(treeroot, pattern):
    results = []
    for base, dirs, files in os.walk(treeroot):
        goodfiles = fnmatch.filter(files, pattern)
        results.extend(os.path.join(base, f) for f in goodfiles)
    return results
DreamCoder

Réponses similaires à “Le fichier texte Python contient”

Questions similaires à “Le fichier texte Python contient”

Plus de réponses similaires à “Le fichier texte Python contient” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code