Given the following class definition, which of the following…
Given the following class definition, which of the following is the correct way to create an instance of the Worker class and call the calculate_pay() method? class Worker: def __init__(self, name, salary, hours): self.name = name self.salary = salary self.hours = hours def calculate_pay(self): return self.salary*self.hours