Question: IN PYTHON 12.2 (The Location class) Design a class named Location for locating a maximal value and its location in a two-dimensional list. The class
IN PYTHON

12.2 (The Location class) Design a class named Location for locating a maximal value and its location in a two-dimensional list. The class contains the public data fields row, column, and maxValue that store the maximal value and its indexes in a two-dimensional list, with row and column as int types and maxValue as a float type Write the following method that returns the location of the largest element in a two-dimensional list. def Location locateLargest (a): The return value is an instance of Location. Write a test program that prompts the user to enter a two-dimensional list and displays the location of the largest ele- ment in the list. Here is a sample run: Enter the number of rows and columns in the list: 3, 4 te Enter row 0: 23.5 35 2 10 r Enter row 1: 4.5 3 45 3.5 Enter Enter row 2: 35 44 5.5 12.6nt The location of the largest element is 45 at (1, 2)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
