我有一个单词列表,但我需要从列表中删除最后一项,对列表的其余部分执行一个功能,然后替换最后一项。但是由于某种原因,当我去更换最后一个项目时,它会这样做......
>>> List = ['this', 'is', 'a', 'list']
>>> last = List[-1]
>>> others = List[:-1]
>>> others += last
>>> print others
['this', 'is', 'a', 'l', 'i', 's', 't']
有什么方法可以将最后调用的列表连接到其他列表,但只有一个元素。