Boston Python Workshop 3/Tuesday OO lesson/banking.py: Difference between revisions

no edit summary
(Created page with 'class Bank: def logIn(self, username, password): return True class User: def __init__(self, theUsername, thePassword): self.username = theUser…')
 
No edit summary
Line 1:
<code>class Bank:
def logIn(self, username, password):
Line 25:
self.balance = self.balance - amount
print "Account just withdrew %d bucks; new balance is: %d" % (amount, self.balance)
</code>
Anonymous user