from tkinter import *
def main_account_screen():
main_screen = Tk()
main_screen.geometry("300x250")
main_screen.title("Account Login")
Label(text="Choose Login Or Register", bg="blue", width="300", height="2", font=("Calibri", 13)).pack()
Label(text="").pack()
Button(text="Login", height="2", width="30").pack()
Label(text="").pack()
Button(text="Register", height="2", width="30").pack()
main_screen.mainloop()
main_account_screen()
tk.mainloop()
运行.py文件时,没有任何GUI。谁能帮我为什么这不起作用。我正在使用Pycharm,但我也尝试过使用常规python解释器运行程序。