知道的有2中吧:
#第一种oList = ['A',1,'B',2]iList = oList[:]oList.extend(iList)print oList#第二种oList = ['A',1,'B',2]nList = oList * 2print oList