tkinter 不同的方法如何传递变量

    def xz(self):
        self.file_path=tk.StringVar()
        self.file_path = tk.filedialog.askopenfilename(title='请选择一个文件')
        #print (returned_values['file_path'])
        print (repr(self.file_path))
    def show(self):
        print (repr(self.file_path))
        self.aa.set(repr(self.file_path))

tkinter 中我们经常会用到选择文件的控件,这个时候我们需要保存path 这个变量,同时在其他的方法中使用,这时用 repr(self.file_path)

 

你可能感兴趣的:(python)