用python写一个银行取钱程序
时间: 2023-05-15 21:05:03 浏览: 107
Python银行取款系统
好的,以下是一个简单的 Python 银行取钱程序:
```python
class BankAccount:
def __init__(self, balance):
self.balance = balance
def withdraw(self, amount):
if amount > self.balance:
print("余额不足!")
else:
self.balance -= amount
print("取款成功!")
def deposit(self, amount):
self.balance += amount
print("存款成功!")
account = BankAccount(1000)
account.withdraw(500)
account.deposit(1000)
```
这个程序创建了一个 BankAccount 类,其中包含了余额、取款和存款等方法。我们可以通过实例化 BankAccount 类来创建一个银行账户,并使用 withdraw 和 deposit 方法来取款和存款。在这个例子中,我们首先创建了一个初始余额为 1000 的账户,然后取出了 500 元,最后存入了 1000 元。
阅读全文