insert (int index,E element) 在index 处插入一个元素. List a = [1, 2, 3, 4]; a.insert(2, 'jsshou'); print(a);//[1,2,jsshou,3,4].
確定! 回上一頁