The code below defines a Pizza class that is intended to: C…
The code below defines a Pizza class that is intended to: Create pizza instances with a size and list of toppings Track a menu of available pizzas and the total number of orders placed Provide utility methods to calculate prices, validate sizes, and manage the menu The class includes instance methods, static methods, and class methods. However, the code contains multiple syntax and/or logical errors in the method definitions. Identify ALL errors by stating the line number, describing the problem, and the correction. Assume there are no indentation errors, and any slight difference in spacing will not affect the code. 1. class Pizza:2. menu_items = 25. 26. pizza1 = Pizza(“large”, )27. print(Pizza.calculate_price(“medium”))28. Pizza.add_to_menu(“Margherita”, 10)