Advertisement
Roman_Sarnov

Untitled

Sep 29th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. class Emploee():
  2. def __init__(self,first,last,salary):
  3. self.first = first
  4. self.last = last
  5. self.salary = salary
  6. def give_raise(self):
  7. self.salary += 5000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement