Question: We are going to modify the Student class from Lab 9.1 to take parameters for first name last name, and gpa in the constructor. Implement
We are going to modify the Student class from Lab 9.1 to take parameters for first name last name, and gpa in the constructor. Implement the following: - A Student constructor that takes parameters for self, first, last, and gpa and sets the instance variables (see Section 9.5 - we do not need to set parameters to a value - see 2 nd example p. 406) Instance Methods (you should be able to copy most of these from 9.1 lab): - set_first(self, first) - set student's first name to parameter name - get_first(self) - return student's first name - set_last(self, first) - set student's last name to parameter name - get_last(self) - return student's last name - set_gpa(self, gpa) - set student's gpa to parameter gpa - get_gpa(self) - return student's gpa Ex: If a new Student object is created with Andrew, Woo, 3.6, the default return values are: Andrew for first name Woo for last name
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
