lire un fichier python ligne par ligne code example
Example: python parcourir ligne
with open("path", "r") as f :
fichier_entier = f.read()
files = fichier_entier.split("\n")
for fichier in files :
with open(fichier, 'r') :
# CONDITIONS