需要添加幾個就循環幾次
list = ['a','b','c','d','e']
new_list = []
for i in range(3):
print(list[i])
new_list.append(list[i])
print(new_list)