class Person: # put the definition here def main(): p1 = Person("Nicole Johnson",111223333) p2 = Person("Jack Cole",999881234) p1.setHeight(60) p1.setWeight(120) p1.setAge(30) p1.setPhone(7181234567) p1.setEmail("cannotReachMe@yahoo.com") p1.setAddress("45 Unknown Street, Apt. 45, Bronx, NY 10453") p2.setHeight(70) p2.setWeight(150) p2.setAge(42) p2.setPhone(7189872345) p2.setEmail("canReachMe@yahoo.com") p2.setAddress("4 Somewhere Street, Bronx, NY 10453") # let's start printing.... print("Information about the first person:",p1.getName()) print("SSN: ", p1.getSSN()) print("Age = {0}, height = {1} inches, weight = {2} lb".format(p1.getAge(),p1.getHeight(),p1.getWeight())) print("Postal address:",p1.getAddress()) print("e-mail:",p1.getEmail()) print("phone number:",p1.getPhone()) print("----- the end ------\n") print("Information about the second person:",p2.getName()) print("SSN: ", p2.getSSN()) print("Age = {0}, height = {1} inches, weight = {2} lb".format(p2.getAge(),p2.getHeight(),p2.getWeight())) print("Postal address:",p2.getAddress()) print("e-mail:",p2.getEmail()) print("phone number:",p2.getPhone()) print("----- the end ------") main()