我意识到这可能真的很简单,我一直在Matlab中这样做。现在,我要做的就是使用tkinter中的按钮打开文件对话框,选择一个文件,并将路径名存储在变量中。
class Functions:
def FileDialog(Pathname):
Pathname = tkFileDialog.askopenfilename()
Funks = Functions()
Btn1 = tkinter.Button(MainWindow, text = "Browse", command = Funks.FileDialog)
功能完成后,“路径名”会去哪里?如何在变量浏览器中查看它?
打印出来(对人类有用;对其余代码无用)
return
在函数末尾FileDialog
的签名(呼叫配置文件),并能够向其推第二个参数。