Python py 9.14 lab: triangle area comparison (classes) given class triangle, complete the program to read and set the base and height of triangle1 and triangle2, determine which triangle's area is larger, and output the larger triangle's info, making use of triangle's relevant methods. ex: if the input is: 3.0 4.0 4.0 5.0 where 3.0 is triangle1's base, 4.0 is triangle1's height, 4.0 is triangle2's base, and 5.0 is triangle2's height, the output is: triangle with larger area: base: 4.00 height: 5.00 area: 10.00 code---------------------------------------- class triangle: def __init__(self): self.base = 0 self.height = 0 def set_base(self, user_base): self.base = user_base def set_height(self, user_height): self.height = user_height def get_area(self): area = 0.5 * self.base * self.height return area def print_info(self): print('base: {:.2f}'.format(self.base)) print('height: {:.2f}'.format(self.height)) print('area: {:.2f}'.format(self.get_area())) if __name__ == "__main__": triangle1 = triangle() triangle2 = triangle()