python parcourir ligne

Solutions on MaxInterview for python parcourir ligne by the best coders in the world

showing results for - "python parcourir ligne"
Anna
26 Jan 2020
1with open("path", "r") as f :
2     
3    fichier_entier = f.read()
4    files = fichier_entier.split("\n")
5 
6for fichier in files :
7     
8    with open(fichier, 'r') :
9  
10            # CONDITIONS
11