Question: other methods: set_name, set_enrollment, and set_urban. Note that each set method takes an input argument. Define set_enrollment method such that if the input argument is
other methods: set_name, set_enrollment, and set_urban. Note that each set method takes an input argument. Define set_enrollment method such that if the input argument is larger than 0 , enrollment should be set to the input argument, otherwise it should be set to 0 . 2. Create two objects of University class: (1) tsu with name TSU, enrollment 8000 , and urban True, and (2) asu with name ASU, enrollment 30000 , and urban False. 3. Print the values of instance variables for tsu and asu using the get methods. 4. Change enrollment for tsu to 8500 using set_enrollment. 5. Change enrollment of asu to 3500 by using set_enrollment. 6. Print the values of instance variables for tsu and asu using the get methods
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
