The Python Tutorial » 5. Data Structures 小记

5. Data Structures

This chapter describes some things you’ve learned about already in more detail, and adds some new things as well.

加了一些新东西而已

5.1. More on Lists

The list data type has some more methods. Here are all of the methods of list objects:

 

list.append(x)
Add an item to the end of the list; equivalent to   a[len(a):] = [x].
增加一个item到list的尾部
list. extend ( L )
Extend the list by appending all the items in the given list; equivalent to   a[len(a):] = L.
通过增加所给list的所有items,从而扩展list
list. insert ( i,  x)
Insert an item at a given position. The first argument is the index of the element before which to insert, so a.insert(0, x)  inserts at the front of the list, and  a.insert(len(a), x)  is equivalent to  a.append(x).
插入一个item到给定位置
list. remove ( x )
Remove the first item from the list whose value is  x. It is an error if there is no such item.
从list里边移除第一个值为x 的item,如果没有这样的item就会出错
list. pop ( [i])
Remove the item at the given position in the list, and return it. If no index is specified,   a.pop()  removes and returns the last item in the list. (The square brackets around the i in the method signature denote that the parameter is optional, not that you should type square brackets at that position. You will see this notation frequently in the Python Library Reference.)
移除list里边给定位置的item,然后返回它。如果用a.pop(),括号里边无东西,表示移除最后一个item
list. index ( x )
Return the index in the list of the first item whose value is  x. It is an error if there is no such item.
返回list里边第一个元素x的索引
list. count ( x )
Return the number of times  x appears in the list.
返回X在list里边出现的次数
list. sort ( )
Sort the items of the list, in place.
排序list里边的items
list. reverse ( )
Reverse the elements of the list, in place.
把list里边的elements倒置

An example that uses most of the list methods:

>>> a = [66.25, 333, 333, 1, 1234.5] >>> print a.count(333), a.count(66.25), a.count('x') 2 1 0 >>> a.insert(2, -1) >>> a.append(333) >>> a [66.25, 333, -1, 333, 1, 1234.5, 333] >>> a.index(333) 1 >>> a.remove(333) >>> a [66.25, -1, 333, 1, 1234.5, 333] >>> a.reverse() >>> a [333, 1234.5, 1, 333, -1, 66.25] >>> a.sort() >>> a [-1, 1, 66.25, 333, 333, 1234.5]
try to type them in your computer!feel better right?

5.1.1. Using Lists as Stacks

>>> stack = [3, 4, 5]
>>> stack.append(6)
>>> stack.append(7)
>>> stack
[3, 4, 5, 6, 7]
>>> stack.pop()
7
>>> stack
[3, 4, 5, 6]
>>> stack.pop()
6
>>> stack.pop()
5
>>> stack
[3, 4]

5.1.2. Using Lists as Queues

It is also possible to use a list as a queue, where the first element added is the first element retrieved (“first-in, first-out”); however, lists are not efficient for this purpose. While appends and pops from the end of list are fast, doing inserts or pops from the beginning of a list is slow (because all of the other elements have to be shifted by one).

To implement a queue, use collections.deque which was designed to have fast appends and pops from both ends. For example:

队列的示范

>>> from collections import deque >>> queue = deque(["Eric", "John", "Michael"]) >>> queue.append("Terry") # Terry arrives >>> queue.append("Graham") # Graham arrives >>> queue.popleft() # The first to arrive now leaves 'Eric' >>> queue.popleft() # The second to arrive now leaves 'John' >>> queue # Remaining queue in order of arrival deque(['Michael', 'Terry', 'Graham'])

5.1.3. Functional Programming Tools

There are three built-in functions that are very useful when used with lists: filter(), map(), and reduce().

函数编程工具,主要是这三个函数

filter(function, sequence)returns a sequence consisting of those items from the sequence for which function(item) is true. If sequence is a string or tuple, the result will be of the same type; otherwise, it is always a list. For example, to compute primes up to 25:

筛选出这个范围的数字

>>> def f(x): return x % 2 != 0 and x % 3 != 0
...
>>> filter(f, range(2, 25))
[5, 7, 11, 13, 17, 19, 23]

map(function, sequence) calls function(item) for each of the sequence’s items and returns a list of the return values. For example, to compute some cubes:

调用function执行每个items并且返回他们的值

>>> def cube(x): return x*x*x ... >>> map(cube, range(1, 11)) [1, 8, 27, 64, 125, 216, 343, 512, 729, 1000]

reduce(function, sequence) returns a single value constructed by calling the binary function function on the first two items of the sequence, then on the result and the next item, and so on. For example, to compute the sum of the numbers 1 through 10:

通过调用function挨个执行前两个items后,再执行结果和下一个item到最后,返回一个值。

>>> def add(x,y): return x+y ... >>> reduce(add, range(1, 11)) 55

5.2. The del statement

There is a way to remove an item from a list given its index instead of its value: the del statement. This differs from the pop() method which returns a value. The del statement can also be used to remove slices from a list or clear the entire list (which we did earlier by assignment of an empty list to the slice). For example:

顾名思义就是删除,但是它和pop不同,del还可以用来移除list里边的slices和清除整个list

>>> a = [-1, 1, 66.25, 333, 333, 1234.5] >>> del a[0] >>> a [1, 66.25, 333, 333, 1234.5] >>> del a[2:4] >>> a [1, 66.25, 1234.5] >>> del a[:] >>> a []

del can also be used to delete entire variables:

>>> del a

转载于:https://www.cnblogs.com/nickchan/archive/2011/08/20/3104527.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值