程序阅读题下列Python语句的程序运行结果为:class account:
def __init__(self, id, balance):
self.id = id; self.balance = balance
def deposit(self, amount): self.balance += amount
def withdraw(self, amount): self.balance -= amount
acc1 = account('1234', 100); acc1.deposit(500)
acc1.withdraw(200); print(acc1.balance)