class Employee(): def __init__(self, name, last_name, salory): self.name = name self.last_name = last_name self.salory = mans_salory def give_raise(self, increase=5000): mans_salory += increase print(salory) man = Employee('Bobby', 'Williams', 2000) man.give_raise(2000)