Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.23 KB | None | 0 0
  1. class Employee():
  2.  
  3.     def __init__(self, employeeName, taxDeductions=1, maritalStatus="single"):
  4.  
  5.         self.employeeName   = employeeName
  6.         self.taxDeductions  = taxDeductions
  7.         self.maritalStatus  = maritalStatus
  8. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement