2023/8/25 update

This commit is contained in:
dengrb1
2023-08-25 21:51:01 +08:00
committed by GitHub
parent b4d86772c9
commit 6799c949eb
6 changed files with 56 additions and 51 deletions

View File

@@ -20,9 +20,12 @@ def chat():
def quit_exe():
sys.exit()
# Button
chat_b = Button(root ,text='聊天网站', command=chat)
q_b = Button(root ,text='返回', command= quit_exe)
# pack Button and label
Label(root, text='选择模式').pack()
chat_b.pack()
q_b.pack()