from ui.studentui import StudentUI def main(): """主函数""" ui = StudentUI() ui.run() if __name__ == "__main__": main()