Question: Solve with python 3 Create a class called Person with the following attributes: name - A string representing the person's name age - An int
Solve with python 3

Create a class called Person with the following attributes: name - A string representing the person's name age - An int representing the person's age in years As well as appropriate_init_ and_str methods, include the following methods: get_name (self) - returns the name of the person get_age(self) returns the age of the person set_name (self, new_name) - sets the name for the person set_age(self, new_age) - sets the age for the person is_older_than(self, other) - returns True if this person is older than the one passed as the other parameter, False otherwise 1 class Person: # TODO: Implement this class properly 3def init_(self, name, age): 4 pass 6def str (self) Alice and Bob pass 9, def get name (self)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
