Question: PYTHON CLASS please answer i will leave a like. Thank you! (14 pts] Next, you will see how your sort function can be used to

PYTHON CLASS please answer i will leave a like. Thank you!
(14 pts] Next, you will see how your sort function can be used to sort other types of objects, given appropriate comparator functions. In the cell below, create a Person class. The class should have two, per-instance data attributes, id and name, representing the ID and name of a person, respectively. The class should include a instantiation method named __init_0), which accepts as arguments the ID and name. To make debugging easier, also include a _repr_() method that will return a string to be used for printing. [] # Put your class here. [5 pts) Now implement a less_by_id() function which will compare two Person objects by their ID, and a less_by_name() function which will compare two Person objects by their names. # Put your comparison functions here. + Code + Text Test code is below. Do not change. "Alice"), Person (4, "Mike"), Person(1, "Jane">] U = (Person(3, "Joe"), Person(2, print(1) for e in 1: print(e) print(sort(1, less_by_id)) print (sort(1, less_by_name))
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
