class Bag: def __init__(self): self.data = [] def add(self, x): self.data.append(x) def addtwice(self, x): self.add(x) self.add(x)a = Bag()a.add(4)
Name (required)
email (will not be published) (required)
Website