“Python -Iterate -Dateien” Code-Antworten

durch alle Dateien im Verzeichnis Python durchführen

import os
directory = 'the/directory/you/want/to/use'

for filename in os.listdir(directory):
    if filename.endswith(".txt"):
      #do smth
      continue
    else:
    continue
Bored Coder

Python iteriert durch Dateien im Verzeichnis

import os

for filename in os.listdir(directory):
    if filename.endswith(".asm") or filename.endswith(".py"): 
         # print(os.path.join(directory, filename))
        continue
    else:
        continue
Fair Fowl

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

Python -Iterate -Dateien

# import required module
import os
# assign directory
directory = 'files'
 
# iterate over files in
# that directory
for filename in os.listdir(directory):
    f = os.path.join(directory, filename)
    # checking if it is a file
    if os.path.isfile(f):
        print(f)
Easy Elephant

Ähnliche Antworten wie “Python -Iterate -Dateien”

Fragen ähnlich wie “Python -Iterate -Dateien”

Weitere verwandte Antworten zu “Python -Iterate -Dateien” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen