What does this code print?
class Counter: count = 0 def __init__(self): Counter.count += 1 a = Counter() b = Counter() print(Counter.count)
← → arrow keys to navigate
Sign in to save your progress.