In[21]:
counter = Counter('banana')
In[22]:
t = (1, 1, 1, 2, 2, 3)
counter = Counter(t)
In [26]:
counter2 = Counter('bans')
counter + counter2
According to the context, counter should be assigned as Counter('banana') again to make this example reasonable.
In[21]:
counter = Counter('banana')
In[22]:
t = (1, 1, 1, 2, 2, 3)
counter = Counter(t)
In [26]:
counter2 = Counter('bans')
counter + counter2
According to the context, counter should be assigned as Counter('banana') again to make this example reasonable.