1

任何人都可以解释为什么有一些函数没有解决,比如文本小部件的 insert() 和 pack() ,并且text = Text(root)行中有错误?我已经导入了 Tkinter 并将 PYTHONPATH 设置为 libs,但我仍然无法正常运行程序。先感谢您

from Tkinter import *
import tkFileDialog
from nltk import *
import sentiment_analysis

root = Tk()
root.title('Semantic Orientation of the Text')

frame = Frame(root)
frame.pack()

text = Text(root)// error
text.tag_config("big", font=('Verdana', 14, 'normal'))
text.tag_config("color", font=('Times New Roman', 24))
text.tag_config("groove", relief=GROOVE, borderwidth=4)
text.pack(expand=YES, fill=BOTH)  #pack() is unresolved

scroll = Tk.Scrollbar(text)
scroll.pack(side=RIGHT, fill=Y)

def onButtonText():

    filename = tkFileDialog.askopenfilename(initialdir='C:/nltk_data/sentiment_analysis')
    text.insert(END, open(filename).read()) #insert() in unresolved

按钮的事件处理程序还有其他功能,但它们有相同的错误 - 文本小部件的 insert() 未解决

4

1 回答 1

2

我的猜测是,既然你在做import *,你正在导入两个版本的 Text,所以你没有得到你认为的对象。

真的没有什么好的理由去做import *。如果您执行以下操作,您的代码将更容易维护:

import Tkinter as tk
...
root = tk.Tk()
text = tk.Text(root, ...)
于 2012-04-25T18:40:51.900 回答