NoneType对象没有属性get

时间:2016-05-23 10:10:50

标签: python tkinter numerical-methods nonetype

我在使用tkinter时遇到了一些麻烦 问题是没有可以使用widget文本的方法。这是我的代码

from tkinter import *
root = Tk()
tex = Text(root, width = 50, height = 10, bd = 2).pack()
tex.get(1.0, END)
root.mainloop()

它返回错误:

  

AttributeError:'NoneType'对象没有属性'get'

它让我发疯了!我对任何Text的方法都有这样的问题

1 个答案:

答案 0 :(得分:4)

您保存" pack"的返回值在" tex"中,这是无。 这是正确的:

tex = Text(root, width = 50, height = 10, bd = 2)
tex.pack()