Python 列表List remove() 方法 Python 列表List pop() 方法 python list reverse() 方法 Python 列表List remove() 方法 #!/usr/bin/python aList = [123, 'xyz', 'zara', 'abc', 'xyz']; aList.remove('xyz'); print "List : ", aList aList.remove('abc'); print "List : ", aList Python 列表List pop() 方法 python list reverse() 方法