我想在用户希望退出时在UI上打印消息。 这是与其相关的代码的一部分
if word in quit_words:
user_to_quit = True
Print = "Pleasure serving you!"
print_bot_reply(Print)
time.sleep(5)
root.destroy()
print bot_reply函数如下:
def print_bot_reply(response):
response = "\nKalpana: " + str(response)
label = Label(frame,text = response,bg="#b6efb1", borderwidth=5, relief="raised")
label.pack(anchor = "w")
窗口在5秒后关闭,根据需要但不显示消息。 请指出我的错误或建议其他方法来做到这一点
谢谢!