我的代码的另一个错误

时间:2014-04-01 22:04:48

标签: python error-handling tkinter

我的代码出现了另一个错误!男人,我只是继续得到他们......我以前的一个(固定的) 是here

from Tkinter import *   
def get_info(key):
    pass#do more later
def create_new():
    create = Toplevel(root)
    create.title('Create A New Contact')
    Label(create, text='Name: ').grid(row=0, sticky=W+E)
    name = Entry(create, width=8).grid(row=1, sticky=W+E)
    Label(create, text='Address(ex. 1111 Main St, MyCity, Anystate 12345): ', wrapLength=1).grid(row=2, sticky=W+E)
    address = Entry(create, width=8).grid(row=3, sticky=W+E)
def access():
    access_window = Toplevel(root)
    access_window.title("Access a Contact")
    Label(access_window, text="Enter a first name: ").grid(row=0, sticky=W+E)
    access_key = Entry(access_window, width=8).grid(row=1, sticky=W+E)
    Button(access_window, text="Submit", command=lambda: get_info(access_key.get('0.0', 'end-1c'))).grid(row=2, sticky='W+E')
root = Tk()
root.title('Address Book')
button1 = Button(root, text="Create New", command=create_new).grid(row=0, column=0)
button2 = Button(root, text=“Access Person”, command=access).grid(row=0, column=1)

这应该没有错,但有。这不是错误,只是当我单击“创建新”按钮时,只显示名称条目,其他一切都没有。使用“访问人员”按钮,它只显示“输入名称:”而不显示任何条目。

2 个答案:

答案 0 :(得分:2)

您的代码中有两个拼写错误:

首先,换行长度需要小写' L':

Label(create, text='Address(ex. 1111 Main St, MyCity, Anystate 12345): ', wrapLength=1).grid(row=2, sticky=W+E)
                                                                              ^

已更改为

Label(create, text='Address(ex. 1111 Main St, MyCity, Anystate 12345): ', wraplength=1).grid(row=2, sticky=W+E)
                                                                              ^

其次,您不小心在其中一个W+E周围添加了引号。改变这一行:

Button(access_window, text="Submit", command=lambda: get_info(access_key.get('0.0', 'end-1c'))).grid(row=2, sticky='W+E')
                                                                                                                   ^   ^

到此

Button(access_window, text="Submit", command=lambda: get_info(access_key.get('0.0', 'end-1c'))).grid(row=2, sticky=W+E)

答案 1 :(得分:0)

这是你的问题: TclError:粘性值很差" W + E":必须是包含n,e,s和/或w的字符串

TclError:未知选项" -wrapLength"

修复这些并完成组装gui