import tkinter as tk
from tkinter.filedialog import askopenfilename
root = tk.Tk()
# show askopenfilename dialog without the Tkinter window
root.withdraw()
# default is all file types
file_name = askopenfilename()
print(file_name)
这是我试图在 python 中使用的代码,它允许我选择一个文件并返回我选择的任何文件。该程序允许我选择一个文件,但不是打开文档,而是在 Python shell 中显示文件路径。我怎样才能解决这个问题?谢谢