Python Tkinter条目验证--如何使用%W

Python Tkinter条目验证--如何使用%W,python,tkinter,Python,Tkinter,我可以通过其结构变量引用小部件,如图所示,但根据打印的内容,W也应该工作,因为显然W和new\u user\u input都引用小部件名称。我已经使用Tkinter的内置验证工作了几天,这是我一直遇到的唯一问题%P按预期工作,但%W不工作。我不知道我做错了什么。我在一个类中使用了它,并将其提取出来以简化代码,但错误消息是相同的 import tkinter as tk def validate1(W, P): print("W is", W) print("new_user_i

我可以通过其结构变量引用小部件,如图所示,但根据打印的内容,
W
也应该工作,因为显然
W
new\u user\u input
都引用小部件名称。我已经使用Tkinter的内置验证工作了几天,这是我一直遇到的唯一问题<代码>%P按预期工作,但
%W
不工作。我不知道我做错了什么。我在一个类中使用了它,并将其提取出来以简化代码,但错误消息是相同的

import tkinter as tk

def validate1(W, P):
    print("W is", W)
    print("new_user_input is", new_user_input)
    all_users = ["Bob", "Nancy"]
    valid = P not in all_users
    print("valid is", valid)
    if valid is False:
        new_user_input.bell() # works
        W.delete(0,tk.END) # doesn't work

    return valid

root = tk.Tk()

vcmd1 = (root.register(validate1), "%W", "%P")

new_user = tk.Label(
    root, 
    text="New user name:")
new_user_input = tk.Entry(
    root,
    validate="focusout",
    validatecommand=vcmd1)
new_user.grid()
new_user_input.grid()
tk.Entry(root).grid()

root.mainloop()

output:

W is .15065808
new_user_input is .15065808
valid is False
Exception in Tkinter callback
Traceback (most recent call last):
  File "C:\Users\LUTHER\AppData\Local\Programs\Python\Python35-32\lib\tkinter\__init__.py", line 1549, in __call__
    return self.func(*args)
  File "C:\tkinter_code\example_code\widget_variable_in_tkinter_validation.py",
line 13, in validate1
    W.delete(0,tk.END)
AttributeError: 'str' object has no attribute 'delete'

W
返回一个字符串。您可以通过
类型(W)
进行检查:

print("W is", W, type(W))

#W is .!entry <class 'str'>
def validate1(W, P):
    widget = root.nametowidget(W)
    print("W is", widget, type(widget))

#W is .!entry <class 'tkinter.Entry'>