通過list的下標(biāo)訪問list的值 >>> A = [1,2,3] >>> A[0] #output: 1 通過list的值訪問該值在list中的下標(biāo) >>> A = [1,2,3] >>> A.index(1) # output: 0