Python:
Posted: Thu Jul 14, 2022 2:19 pm
Python:
1. Write the definition of a class Employee that provides the following methods: - An_init_method that initializes the accepts the following attribute variables as parameters: - An attribute variable that named employeeName, accepts the 1st parameter - An attribute variable that named hoursWorked, accepts the 2 nd parameter - An attribute variable that named wage, accepts the 3rd parameter - A method getEmployeeName that has no argument and returns the value of employeename - A method gethoursWorked that has no argument and returns the value of hoursWorked. - A method getWage that has no argument and returns the value of wage. - A method getPayment that has no argument and returns the payment of the employee. Make sure to calculate 1.5 times the wage if hours is more than 40.
1. Write the definition of a class Employee that provides the following methods: - An_init_method that initializes the accepts the following attribute variables as parameters: - An attribute variable that named employeeName, accepts the 1st parameter - An attribute variable that named hoursWorked, accepts the 2 nd parameter - An attribute variable that named wage, accepts the 3rd parameter - A method getEmployeeName that has no argument and returns the value of employeename - A method gethoursWorked that has no argument and returns the value of hoursWorked. - A method getWage that has no argument and returns the value of wage. - A method getPayment that has no argument and returns the payment of the employee. Make sure to calculate 1.5 times the wage if hours is more than 40.