1 creating an object new class py inside a script named nev class py create a new cl 5148581
1. Creating an object new class.py Inside a script named nev class. py, create a new class called NewClass. Fill in NewClass so that it is created, usinginit__ (). The parameters for this method are self and the list. Save the_list to self. the_list Create an object instance of NewClass called new object, giving it a list of ten integers as parameters. Test that it works by printing new object.the_list. Add a method to NevClass called print params () that prints the list (one item per line). The only parameter for this method is self. Test it afterward by calling the method for your object new object.print_params (). Add a method to NevClass called find average () that finds and returns the average of the list. The only parameter for this method is self. Test it before moving on. Add a method to NewClass called find min ( that finds and returns the minimum of the parameters. The only parameter for this method is self. Test it before moving on, Add a method to NewClass called find max () that finds and returns the maximum of the parameters. The only parameter for this method is self. Test it. When you're done, you should have a new class, NewClass. UNDER your class description, you should have several lines. The first should create your new object. The others should call the various methods (print params (), find_average (), find min (), find max () and print them out. Create another object of NevClass named other object. Give it a different list and then use all the methods on those too.