def func3(lst): tmpLst = [] for i in range(len(lst)): if lst[i] % 3 == 0: tmpLst.append(i//3) else: tmpLst.append(i) return tmpLst