Classes_and_Objects_Zuri

-Open “main.py”. You’ll find the class Student. Student class has the following attributes: Name: A string, initialized when creating an instance of Student Age: An integer,initialized when creating an instance of Student Tracks: A list of strings, initialized when creating an instance of Student. Score: A float, initialized when creating an instance of Student.
-The following methods were created for class “Student”: change_name: Change students name, accepts a new name as an argument. Change_age: Change students' age, accepts a new age as an argument. Ensures age remains an integer. Add_track: Add a new item to students tracks, accepts a new track as an argument. get_score: Returns student’s score.