What does this code print?
class Counter: count = 0 def __init__(self, n): self.count = n c = Counter(5) print(Counter.count, c.count)
← → arrow keys to navigate
Sign in to save your progress.