11. 파이썬 클래스 / 271 ~ 280 # 파이썬 300제 _ 271번 ~ 280번 import random class Account: account_count = 0 def __init__(self, name, balance): self.deposit_count = 0 self.deposit_log = [] self.withdraw_log = [] self.name = name self.balance = balance self.bank = "SC은행" num1 = random.randint(0, 999) num2 = random.randint(0, 99) num3 = random.randint(0, 999999) num1 = str(num1).zfill(3) num2 = str(num2).zfill..