Question: 3. Create a class named 'Sub1', inside the class, generate a user defined function named 'first' and inside the function, pass the following statement

3. Create a class named 'Sub1', inside the class, generate a user defined function named 'first' and inside the function, pass the following statement in the print()- 'This is the first function from Sub 1 class'. a. Now create another class named 'Sub2', and inside the class, create a function named 'second', and pass the following message in the print()- 'This is the second function from the Sub 2 class'. b. After that, create another class named 'Super' and inside that class, create a method named 'final', and pass the below message in the print()- 'This is the final method from the super class'. c. Now, create an object for the Super class and call all the 3 user defined methods, i.e., first(), second(), and final().
Step by Step Solution
There are 3 Steps involved in it
Heres the Python code that implements the described classes and their ... View full answer
Get step-by-step solutions from verified subject matter experts
