Advertisement
Guest User

Untitled

a guest
Dec 13th, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.38 KB | None | 0 0
  1. class Account:
  2.     def __init__(self, account_type, balance, ssn, first, last, account_number):
  3.         #CreateAccount.CreateAccount.__init__(self, AccountType, InitialDeposit, SSN, First, Last)
  4.         self.account_number = account_number
  5.         self.balance = balance
  6.         self.account_type = account_type
  7.         self.ssn = ssn
  8.         self.first = first
  9.         self.last = last
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement