Answers for "for loop to load images from folders into python"

17

how to iterate through images in a folder python

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

for filename in os.listdir(directory):
    if filename.endswith(".txt"):
      #do smth
      continue
    else:
    continue
Posted by: Guest on March-30-2020

Code answers related to "for loop to load images from folders into python"

Python Answers by Framework

Browse Popular Code Answers by Language