arraysList = [] for i in range(0,3): arraysList.append([1,2,3]) print arraysList # [[1, 2, 3], [1, 2, 3], [1, 2, 3]] print arraysList[1] # [1, 2, 3]