This tutorial will teach you to make the Student Management System Project step by step. The following system will use to manage the Student Management. User Login import mysql.connector from tkinter import * from tkinter import messagebox from subprocess import call def Ok(): mysqldb = mysql.connector.connect(host="localhost", user="root", password="", database="studentmanagement") mycursor = mysqldb.cursor() uname = e1.get() password = e2.get() sql = …