Question: Select the folder Write a GUl python program that mimics the above GUl layout where the user can select the folder where the images are

Select the folder Write a GUl python program that mimics the above GUl layout where the user can select the folder where the images are stored. Then, the first image in the folder will be displayed. When the user hits Next, it should display the next image and so on. When the user hits Back, it should display the previous image and so on. The program should display a message "There is no more image" when the user reaches the end and hits Next or in the beginning and hits Back. Hint: use the following function to get all the files inside a folder as a list. import os def getlist(folderPath): return os.listdir(folderPath)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
