Python location of max number in matrix
(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 findLocation( self ): 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 element in the list. class Location: def __init__ ( self , row = 0 , column = 0 , maxValue = 0 ): self .row = row self .column = column self .maxValue = maxValue self ....