class puk:
	def __init__(self):
		puk.lst = []

	def add(self, a):
		puk.lst.append(a)

x = puk()
x.add(123)
print(x.lst, puk.lst)