how to load an image file in python with windows explorer code example
Example 1: open choose files from file explorer python
import tkinter as tk
from tkinter import filedialog
root = tk.Tk()
root.withdraw()
files = filedialog.askopenfilenames()
Example 2: python open file from explorer
import sys
path = r'C:\Program Files (x86)\IronPython 2.7\Lib'
sys.path.append(path)
import subprocess
subprocess.Popen('explorer "C:\temp"')