执行以下程序,输出结果为()
class Base(object):
count = 0
def __init__(self):
b2 = Base()
b1.count = b1.count + 1
print(b1.count,end=" ")
print(Base.count,end=" ")
print(b2.count)
1 1 1
1 0 0
1 0 1
抛出异常