📜  python parcourir ligne - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:05.058000             🧑  作者: Mango

代码示例1
with open("path", "r") as f :
     
    fichier_entier = f.read()
    files = fichier_entier.split("\n")
 
for fichier in files :
     
    with open(fichier, 'r') :
  
            # CONDITIONS