Answers for "python how to askopenfilename for multiple files"

1

python how to askopenfilename for multiple files

#So, you now how to do askopenfilename, the plural of it is askopenfilenames lol
#Super cliche ikr. But yeah that is it, instead of askopenfilename do askopenfilenames
import Tkinter

root = tk.Tk()
files = fd.askopenfilenames([the stuff you need])

#It is important to point out that it stores them in a tuple 
#So, if you need to do something to each individual file, do a for loop
#Example:

import Tkinter

root = tk.Tk()
root.geomotry=("400x400")
root.title=("Image file sayer")

images = fd.askopenfilenames(text = "Select an image my guy").place(x=120, y=120)

for image in images:
  if image.endswith(".jpg"):
		print("This image is a jpeg my guy!")

#Good luck to my future software engineers!
Posted by: Guest on May-29-2021

Code answers related to "python how to askopenfilename for multiple files"

Python Answers by Framework

Browse Popular Code Answers by Language