2

我正在使用 Python 3.2 for Windows 和 Tkinter 8.5。有谁知道是否可以通过在列表框中选择一个项目并在文本小部件上显示文本文件内容来打开文本文件?这是我的代码:

def starters_menu():
        self.listBox.delete(0, END)
        starters_menu = open("starters_menu.txt")
        for line in starters_menu:
            line = line.rstrip()
            self.listBox.insert(END, line)
        self.listBox.bind("<ButtonRelease-1>", recipe_title, add="+")
        self.listBox.bind("<ButtonRelease-1>", recipe_ingredients, add="+")
    recipe_menu.add_command(label="Starters, Snacks and Savouries", command=starters_menu)

我需要帮助来编写“recipe_ingredients”的定义,以便在选择列表中的项目时,打开链接到该项目的文本文件并将其内容显示在文本小部件中。我需要知道如何将文件链接到列表框项以及如何使用上面代码中显示的处理程序调用它。

4

1 回答 1

2

文本文件

您可以打开一个文本文件并将其内容转储到一个字符串中,如下所示:

textFile = open(filename, 'r')
#open() returns a file object
#'r' opens the file for reading. 'w' would be writing
textString = textFile.read()
#This takes the file object opened with the open() and turns it into a string which
#you can now use textString in a text widget.

有关文本文件和 Python 的更多信息

将列表框与文本文件链接

要将列表框项目与文本文件链接,我想您可以将所有放入列表框中的内容放在字典中,更多信息在这里。与由一系列数字索引的数组或列表不同,字典由键索引,键可以是任何不可变类型;字符串和数字总是可以作为键。因此,例如,您可以将文件名作为键,将列表框中的任何内容作为值。

我希望我能有所帮助。

于 2013-10-26T23:51:23.193 回答