def DoChange(aList): aList.append(4) return aList aList = [1, 2, 3] print(aList) print(DoChange(aList)) print(aList)