“Schlaufe durch Datei Python” Code-Antworten

Python iteriert durch Dateien

import os

directory = os.fsencode(directory_in_str)
    
for file in os.listdir(directory):
     filename = os.fsdecode(file)
     if filename.endswith(".asm") or filename.endswith(".py"): 
         # print(os.path.join(directory, filename))
         continue
     else:
         continue
Generic name

Schlaufe durch Datei Python

with open('topology_list.txt') as topo_file:
    for line in topo_file:
        print line,  # The comma to suppress the extra new line char
Difficult Dragonfly

Ähnliche Antworten wie “Schlaufe durch Datei Python”

Fragen ähnlich wie “Schlaufe durch Datei Python”

Weitere verwandte Antworten zu “Schlaufe durch Datei Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen