这个我试过
aList = ['Q', '0006','005C', '0078','0030','0033', '0041','0041', 'ONE_OF', '20' ]
print aList
removeItem=aList.pop()
print removeItem
print aList
a=raw_input("enter the values ")
add=aList.append('a')
print aList
我得到的输出是 ['Q', '0006','005C', '0078','0030','0033', '0041','0041', 'ONE_OF', 'a' ]
我想要输出['Q', '0006','005C', '0078','0030','0033', '0041','0041', 'ONE_OF', 'a' ] 而不是 'a'最后一项应在列表中显示用户输入的值