import copy def pown(cls,*m): x=copy.deepcopy(m) m.clear() if len(x)!=0: return 2**x[0] else: return 2**a