create a school data management python project using mysql to add, delete, update student name, class, roll number, phone number etc
def addStudent(): name = input('Student Name: ') roll = input('Student Roll: ') cls = input('Student Class: ') phone = input('Student Phone: ') # add code to add the student data to mysql database return 'Student Added' addStudent()