Python 列表List index() 方法 Python 列表List extend() 方法 Python 列表List insert() 方法 Python 列表List index() 方法 #!/usr/bin/python aList = [123, 'xyz', 'zara', 'abc']; print "Index for xyz : ", aList.index( 'xyz' ) print "Index for zara : ", aList.index( 'zara' ) Python 列表List extend() 方法 Python 列表List insert() 方法