对于银行存取款的流程,人们非常熟悉,用户可在银行对自己的资金账户进行存款、取款、查询余额等 操作,极大的便利了人民群众对资金的管理。 本案例要求,使用所学知识编写一个程序实现银行存取款功能。案例要求如下: (1)创建账户,初始存款为500。 (2)向账户存入1000元。 (3)从账户取出800元。 (4)操作完毕,展示余额
时间: 2023-06-02 22:03:08 浏览: 131
这是一个关于银行存取款的程序。.rar_banking_java 银行_存取款操作_编程一个个人账户存取款_银行业务
5星 · 资源好评率100%
。代码如下:
```python
class BankAccount:
def __init__(self, initial_deposit=500):
self.balance = initial_deposit
def deposit(self, amount):
self.balance += amount
def withdraw(self, amount):
if self.balance >= amount:
self.balance -= amount
else:
print("Insufficient balance.")
def get_balance(self):
return self.balance
# Create an account with initial deposit of 500
account = BankAccount()
# Deposit 1000 yuan
account.deposit(1000)
# Withdraw 800 yuan
account.withdraw(800)
# Print the remaining balance
print("Remaining balance: ", account.get_balance())
```
输出结果为:
```
Remaining balance: 700
```
阅读全文