def update_student(self,id):
self.db.cursor.execute('UPDATE students set name =?,email=?,phone=? WHERE id = ?',(self.name,self.email,self.phone,id))
self.db.connection.commit()
# Create Student Object
student = Student()
# Modify Student Object Property Value
student.name= 'olee ahmmed'
student.email = 'ashik.techs@gmail.com'
student.phone = '01953-6649667'
student.update_student(1)