""" permArr = [1,2,3,4,5] for num in permArr: tempArr = permArr tempArr.append(1) print(tempArr) """ Arr = [1,2,3,4,5] for num in Arr: Arr2 = Arr Arr2.append(1) #this can be anything print(Arr2)