ezeke 发表于 2017-4-22 09:49:57

Google's Python Class 3 (Python Lists)

  原文:http://code.google.com/edu/languages/google-python-class/lists.html

Python Lists

Google Code University › Programming Languages
Python拥有一种强大的列表类型: "list". List 通过 [ ]进行声明. Lists与string类型的用法很相似 -- 使用len()、使用方括号 [ ]访问数据, 索引从0开始. (参阅官方文档 python.org list docs.)

  colors = ['red', 'blue', 'green']
  print colors[0]    ## red
  print colors[2]    ## green
  print len(colors)  ## 3
http://code.google.com/edu/languages/google-python-class/images/list1.png
使用=号对list进行赋值不会产生一个新的对象. 而是会把两个变量指向同一处内存:

  b = colors   ## Does not copy the list
http://code.google.com/edu/languages/google-python-class/images/list2.png
[ ]仅仅表示一个空的list.  '+' 同样对list有效, 因此 + 产生 (同string相同).

FOR 和 IN 关键字

Python里的for和in非常有用, 首先我们在list中试用一下.  *for*  -- for var in list -- 是最访问一个list或其他集合的最简单方式. 在迭代访问的时候不要添加或移除元素.

  squares = [1, 4, 9, 16]
  sum = 0
  for num in squares:
    sum += num
  print sum  ## 30
如果你知道列表中的元素表示什么,请使用"num", 或 "name", 或 "url" 来命名变量. 这样你今后才能很容易明白代码的含义.
 *in* 是检测元素是否被一个list或其他集合包含的最简单方式 -- value in collection -- 返回值为True或False(注意大小写).

  list = ['larry', 'curly', 'moe']
  if 'curly' in list:
    print 'yay'
由于for/in两个关键字在python是最常用的,所以要对这两个关键字的用法格外留意. 在Python中你只需要用for/in就可以迭代任一的集合了,这在其他语言中可能不那么简单.
同样道理,你也可以把他们用在一个字符串里: for ch in s: print ch 这段代码打印所有字符.

Range(范围)

range(n) 会生成 0, 1, ... n-1, range(a, b) 能够返回 a, a+1, ... b-1. 使用for/in和range组合能够让你简单的获取一组数字:

  ## print the numbers from 0 through 99
  for i in range(100):
    print i
Python2.x 中有一个xrange()作为range()的变体来提高性能。(但是在python3000中已经对range()本身的性能做了优化,所以今后你可以忘记xrange()了).

While Loop(While循环)

Python 也有while循环,并且 *break* 、 *continue* 同样适用. for/in提供了一种完整遍历集合的方式,但是while可以让你自由控制遍历的过程. 下面是一个每个三个元素进行一次访问的遍历:

  ## Access every 3rd element in a list
  i = 0
  while i < len(a):
    print a[i]
    i = i + 3
List Methods(List相关的方法).



[*]list.append(elem) -- 在list末尾添加一个新元素. 常见误区: 这个方法不会返回新的list,只是修改而已.
[*]list.insert(index, elem) -- 在指定索引处添加新元素.
[*]list.extend(list2) 把list2中的元素追加到list中. + 、 += 可以实现同样的效果.
[*]list.index(elem) -- 检查某元素是否存在于list,不存在则会跑出错误,可以使用in关键字避免抛出错误.
[*]list.remove(elem) -- 移除元素,不存在则抛出错误
[*]list.sort() -- 给list排序,但并不返回list本身. (下面的sorted()函数较为推荐)
[*]list.reverse() -- 逆转list
[*]list.pop(index) -- 移除并返回被移除的元素. 不指定索引则返回尾端的元素 (逆操作append()).

 

  list = ['larry', 'curly', 'moe']
  list.append('shemp')         ## append elem at end
  list.insert(0, 'xxx')        ## insert elem at index 0
  list.extend(['yyy', 'zzz'])  ## add list of elems at end
  print list  ## ['xxx', 'larry', 'curly', 'moe', 'shemp', 'yyy', 'zzz']
  print list.index('curly')    ## 2
  list.remove('curly')         ## search and remove that element
  list.pop(1)                  ## removes and returns 'larry'
  print list  ## ['xxx', 'moe', 'shemp', 'yyy', 'zzz']
误区: 上面的函数并不返回list本身,而仅仅只是对list进行修改.

  list = [1, 2, 3]
  print list.append(4)   ## NO, does not work, append() returns None
  ## Correct pattern:
  list.append(4)
  print list  ##
List 创建

常见的创建新list的方式是从一个空list开始:

  list = []          ## Start as the empty list
  list.append('a')   ## Use append() to add elements
  list.append('b')
List 切割

切割同样可以使用在list上,与string相同.

  list = ['a', 'b', 'c', 'd']
  print list[1:-1]   ## ['b', 'c']
  list[0:2] = 'z'    ## replace ['a', 'b'] with ['z']
  print list         ## ['z', 'c', 'd']

页: [1]
查看完整版本: Google's Python Class 3 (Python Lists)