摘要:
1 class Account: 2 interest = 0.02 # A class attribute 3 def __init__(self, account_holder): 4 self.balance = 0 5 self.holder = account_holder 6 # Add 阅读全文
posted @ 2021-11-16 18:31
学不动了呀
阅读(114)
评论(0)
推荐(0)
摘要:
class Account: def __init__(self, account_holder): self.balance = 0 self.holder = account_holder def deposit(self, amount): self.balance = self.balanc 阅读全文
posted @ 2021-11-16 18:27
学不动了呀
阅读(53)
评论(0)
推荐(0)
浙公网安备 33010602011771号