码迷,mamicode.com
首页 > 编程语言 > 详细

(3)数组

时间:2015-08-26 19:14:49      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:

1. 直接修改数组长度;越界添加元素,补充undefined;

   也可以减少长度,删除元素

 技术分享

2.indexOf ,对比字符串用法

3.slice ,对比字符串 substring

4.push ,pop

  技术分享

5.shift ,unshift

 技术分享

  插队 python

   collections的双端队列

>>> t=collections.deque([1,2,3,4])
>>> t.popleft()
1
>>> t
deque([2, 3, 4])
>>> t.appendleft(1)
>>> t
deque([1, 2, 3, 4])
>>> t.pop()
4
>>> t
deque([1, 2, 3])
>>> t.append(4)
>>> 

 

6.sort 

 技术分享

7.reserse

 技术分享

8.join 

 技术分享

   python ‘1‘,‘2‘,‘3‘

>>> -.join([1,2,3])
1-2-3

9.concat

  技术分享

10.splice  (perl 的用法)

  技术分享

  number.splice(1,2,‘a‘,‘b‘,‘c‘) ,位置number[1]开始(包括number[1]),长度为2(number[1],number[2]),删除,替换成 ‘a‘,‘b‘,‘c‘

  

(3)数组

标签:

原文地址:http://www.cnblogs.com/Citizen/p/4760985.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!