我有一个名为“用户名”的条目。
username = Entry()
username.place(x = 10, y = 50)
和一个提交按钮
submit = Button(text="Submit", command=getInfo)
submit.place(x = 150, y = 48)
它调用 getInfo 函数
def getInfo():
user = username.get()
我想将用户作为标签。我可以很好地打印它,文本显示在控制台中。当我尝试放置时,出现错误。
File "tk.py", line 8, in getInfo
user.place(x = 150, y = 90)
AttributeError: 'str' object has no attribute 'place'