class Bank:
def __init__(self):
self.balance = 1000
def withdraw(self, amount):
self.balance -= amount
if self.balance < 0:
print("잔액 부족")
mybank = Bank()
mybank.withdraw(300)
print(mybank.balance)
To embed this project on your website, copy the following code and paste it into your website's HTML: