forked from qiwsir/StarterLearningPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaccount.py
More file actions
26 lines (23 loc) · 594 Bytes
/
account.py
File metadata and controls
26 lines (23 loc) · 594 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# coding:utf-8
'''
filename: account.py
'''
class Account(object):
def __init__(self, number):
self.number = number
self.balance = 0
def deposit(self, amount):
try:
assert amount > 0
self.balance += amount
except:
print("The money should be bigger than zero.")
def withdraw(self, amount):
assert amount > 0
if amount <= self.balance:
self.balance -= amount
else:
print("balance is not enough.")
if __name__ == "__main__":
a = Account(1000)
a.deposit(-10)