单击按钮时如何将文件名打印到控制台?

时间:2017-06-16 14:55:31

标签: python tkinter

在下面的示例中,按钮是根据特定目录中的文件创建的。我在按钮上添加了打印功能。我想要做的是,当我点击每个按钮时,每个按钮都应该打印相关文件。但是根据以下代码,当我点击每个按钮时,它们会打印相同的文件名,这是文件列表的最后一项。你能帮我告诉我这些代码中缺少什么吗?

from tkinter import *
import os


class Application:
    def __init__(self):
        self.window = Tk()

        self.frame = Frame()
        self.frame.grid(row=0, column=0)

        self.widgets()
        self.mainloop = self.window.mainloop()

    def widgets(self):
        files = self.path_operations()
        for i in range(len(files)):
            button = Button(self.frame, text="button{}".format(i))
            button.grid(row=0, column=i)
            button.configure(command=lambda: print(files[i]))

    @staticmethod
    def path_operations():
        path = "D:\TCK\\Notlar\İş Başvurusu Belgeleri"
        file_list = [i for i in os.listdir(path) if os.path.isfile(os.path.join(path, i))]
        return file_list


a = Application()

1 个答案:

答案 0 :(得分:1)

程序需要以某种方式知道要打印的文件,但i是共享和更改的。这是一种技术:

def widgets(self):
    files = self.path_operations()
    for i in range(len(files)):
        button = Button(self.frame, text="button{}".format(i))
        button.grid(row=0, column=i)
        button.configure(command=self.make_print(files[i]))

@staticmethod
def make_print(file):
    def local_print ():
        print(file)
    return local_print