Python - Object-Oriented Programming Foundations
What will be the output of this code?
class Counter:
count = 0
def __init__(self):
Counter.count += 1
c1 = Counter()
c2 = Counter()
print(Counter.count)