赞
踩
列表生成式 - 廖雪峰的官方网站 (liaoxuefeng.com)
目录
列表生成式
列表生成式即List Comprehensions,是Python内置的非常简单却强大的可以用来创建list的生成式。
举个例子,要生成list [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
可以用list(range(1, 11))
:
- >>> list(range(1, 11))
- [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
但如果要生成[1x1, 2x2, 3x3, ..., 10x10]
怎么做?方法一是循环:
- >>> L = []
- >>> for x in range(1, 11):
- ... L.append(x * x)
- ...
- >>> L
- [1, 4, 9, 16, 25, 36, 49, 64, 81, 100]
但是循环太繁琐,而列表生成式则可以用一行语句代替循环生成上面的list:
- >>> [x * x for x in range(1, 11)]
- [1, 4, 9, 16, 25, 36, 49, 64, 81, 100]
写列表生成式时,把要生成的元素x * x
放到前面,后面跟for
循环,就可以把list创建出来,十分有用,多写几次,很快就可以熟悉这种语法。
for循环后面还可以加上if判断,这样我们就可以筛选出仅偶数的平方:
- >>> [x * x for x in range(1, 11) if x % 2 == 0]
- [4, 16, 36, 64, 100]
还可以使用两层循环,可以生成全排列:
- >>> [m + n for m in 'ABC' for n in 'XYZ']
- ['AX', 'AY', 'AZ', 'BX', 'BY', 'BZ', 'CX', 'CY', 'CZ']
运用列表生成式,可以写出非常简洁的代码。例如,列出当前目录下的所有文件和目录名,可以通过一行代码实现:
- >>> import os # 导入os模块,模块的概念后面讲到
- >>> [d for d in os.listdir('.')] # os.listdir可以列出文件和目录
- ['.emacs.d', '.ssh', '.Trash', 'Adlm', 'Applications', 'Desktop', 'Documents', 'Downloads', 'Library', 'Movies', 'Music', 'Pictures', 'Public', 'VirtualBox VMs', 'Workspace', 'XCode']
for
循环其实可以同时使用两个甚至多个变量,比如dict
的items()
可以同时迭代key和value:
- >>> d = {'x': 'A', 'y': 'B', 'z': 'C' }
- >>> for k, v in d.items():
- ... print(k, '=', v)
- ...
- y = B
- x = A
- z = C
因此,列表生成式也可以使用两个变量来生成list:
- >>> d = {'x': 'A', 'y': 'B', 'z': 'C' }
- >>> [k + '=' + v for k, v in d.items()]
- ['y=B', 'x=A', 'z=C']
最后把一个list中所有的字符串变成小写:
- >>> L = ['Hello', 'World', 'IBM', 'Apple']
- >>> [s.lower() for s in L]
- ['hello', 'world', 'ibm', 'apple']
使用列表生成式的时候,有些童鞋经常搞不清楚if...else
的用法。
例如,以下代码正常输出偶数:
- >>> [x for x in range(1, 11) if x % 2 == 0]
- [2, 4, 6, 8, 10]
但是,我们不能在最后的if
加上else
:
- >>> [x for x in range(1, 11) if x % 2 == 0 else 0]
- File "<stdin>", line 1
- [x for x in range(1, 11) if x % 2 == 0 else 0]
- ^
- SyntaxError: invalid syntax
这是因为跟在for
后面的if
是一个筛选条件,不能带else
,否则如何筛选?
另一些童鞋发现把if
写在for
前面必须加else
,否则报错:
这是因为for
前面的部分是一个表达式,它必须根据x
计算出一个结果。因此,考察表达式:x if x % 2 == 0
,它无法根据x
计算出结果,因为缺少else
,必须加上else
:
- >>> [x if x % 2 == 0 else -x for x in range(1, 11)]
- [-1, 2, -3, 4, -5, 6, -7, 8, -9, 10]
上述for
前面的表达式x if x % 2 == 0 else -x
才能根据x
计算出确定的结果。
可见,在一个列表生成式中,for
前面的if ... else
是表达式,而for
后面的if
是过滤条件,不能带else
。
如果list中既包含字符串,又包含整数,由于非字符串类型没有lower()
方法,所以列表生成式会报错:
- >>> L = ['Hello', 'World', 18, 'Apple', None]
- >>> [s.lower() for s in L]
- Traceback (most recent call last):
- File "<stdin>", line 1, in <module>
- File "<stdin>", line 1, in <listcomp>
- AttributeError: 'int' object has no attribute 'lower'
使用内建的isinstance
函数可以判断一个变量是不是字符串:
- >>> x = 'abc'
- >>> y = 123
- >>> isinstance(x, str)
- True
- >>> isinstance(y, str)
- False
请修改列表生成式,通过添加if
语句保证列表生成式能正确地执行:
- L1 = ['Hello', 'World', 18, 'Apple', None]
- L2 = [s.lower() for s in L1 if isinstance(s,str)]
- print(L2)
- if L2 == ['hello', 'world', 'apple']:
- print('测试通过!')
- else:
- print('测试失败!')
'运行
通过列表生成式,我们可以直接创建一个列表。但是,受到内存限制,列表容量肯定是有限的。而且,创建一个包含100万个元素的列表,不仅占用很大的存储空间,如果我们仅仅需要访问前面几个元素,那后面绝大多数元素占用的空间都白白浪费了。
所以,如果列表元素可以按照某种算法推算出来,那我们是否可以在循环的过程中不断推算出后续的元素呢?这样就不必创建完整的list,从而节省大量的空间。在Python中,这种一边循环一边计算的机制,称为生成器:generator。
要创建一个generator,有很多种方法。第一种方法很简单,只要把一个列表生成式的[]
改成()
,就创建了一个generator:
- >>> L = [x * x for x in range(10)]
- >>> L
- [0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
- >>> g = (x * x for x in range(10))
- >>> g
- <generator object <genexpr> at 0x1022ef630>
创建L
和g
的区别仅在于最外层的[]
和()
,L
是一个list,而g
是一个generator。
next()
我们可以直接打印出list的每一个元素,但我们怎么打印出generator的每一个元素呢?
如果要一个一个打印出来,可以通过next()
函数获得generator的下一个返回值:
- >>> next(g)
- 0
- >>> next(g)
- 1
- >>> next(g)
- 4
- >>> next(g)
- 9
- >>> next(g)
- 16
- >>> next(g)
- 25
- >>> next(g)
- 36
- >>> next(g)
- 49
- >>> next(g)
- 64
- >>> next(g)
- 81
- >>> next(g)
- Traceback (most recent call last):
- File "<stdin>", line 1, in <module>
- StopIteration
我们讲过,generator保存的是算法,每次调用next(g)
,就计算出g
的下一个元素的值,直到计算到最后一个元素,没有更多的元素时,抛出StopIteration
的错误。当然,上面这种不断调用next(g)
实在是太变态了,正确的方法是使用for
循环,因为generator也是可迭代对象:
所以,我们创建了一个generator后,基本上永远不会调用next()
,而是通过for
循环来迭代它,并且不需要关心StopIteration
的错误。
所以,我们创建了一个generator后,基本上永远不会调用next()
,而是通过for
循环来迭代它,并且不需要关心StopIteration
的错误。
generator非常强大。如果推算的算法比较复杂,用类似列表生成式的for
循环无法实现的时候,还可以用函数来实现。
比如,著名的斐波拉契数列(Fibonacci),除第一个和第二个数外,任意一个数都可由前两个数相加得到:
1, 1, 2, 3, 5, 8, 13, 21, 34, ...
斐波拉契数列用列表生成式写不出来,但是,用函数把它打印出来却很容易:
- def fib(max):
- n, a, b = 0, 0, 1
- while n < max:
- print(b)
- a, b = b, a + b
- n = n + 1
- return 'done'
'运行
注意,赋值语句:
a, b = b, a + b
仔细观察,可以看出,fib
函数实际上是定义了斐波拉契数列的推算规则,可以从第一个元素开始,推算出后续任意的元素,这种逻辑其实非常类似generator。
yield
也就是说,上面的函数和generator仅一步之遥。要把fib
函数变成generator函数,只需要把print(b)
改为yield b
就可以了:
- def fib(max):
- n, a, b = 0, 0, 1
- while n < max:
- yield b
- a, b = b, a + b
- n = n + 1
- return 'done'
'运行
这就是定义generator的另一种方法。如果一个函数定义中包含yield
关键字,那么这个函数就不再是一个普通函数,而是一个generator函数,调用一个generator函数将返回一个generator:
- >>> f = fib(6)
- >>> f
- <generator object fib at 0x104feaaa0>
这里,最难理解的就是generator函数和普通函数的执行流程不一样。普通函数是顺序执行,遇到return
语句或者最后一行函数语句就返回。而变成generator的函数,在每次调用next()
的时候执行,遇到yield
语句返回,再次执行时从上次返回的yield
语句处继续执行。
举个简单的例子,定义一个generator函数,依次返回数字1,3,5:
- def odd():
- print('step 1')
- yield 1
- print('step 2')
- yield(3)
- print('step 3')
- yield(5)
'运行
调用该generator函数时,首先要生成一个generator对象,然后用next()
函数不断获得下一个返回值:
- >>> o = odd()
- >>> next(o)
- step 1
- 1
- >>> next(o)
- step 2
- 3
- >>> next(o)
- step 3
- 5
- >>> next(o)
- Traceback (most recent call last):
- File "<stdin>", line 1, in <module>
- StopIteration
可以看到,odd
不是普通函数,而是generator函数,在执行过程中,遇到yield
就中断,下次又继续执行。执行3次yield
后,已经没有yield
可以执行了,所以,第4次调用next(o)
就报错。
请务必注意:调用generator函数会创建一个generator对象,多次调用generator函数会创建多个相互独立的generator。
有的童鞋会发现这样调用next()
每次都返回1:
- >>> next(odd())
- step 1
- 1
- >>> next(odd())
- step 1
- 1
- >>> next(odd())
- step 1
- 1
原因在于odd()
会创建一个新的generator对象,上述代码实际上创建了3个完全独立的generator,对3个generator分别调用next()
当然每个都会返回第一个值。
正确的写法是创建一个generator对象,然后不断对这一个generator对象调用next()
:
- >>> g = odd()
- >>> next(g)
- step 1
- 1
- >>> next(g)
- step 2
- 3
- >>> next(g)
- step 3
- 5
回到fib
的例子,我们在循环过程中不断调用yield
,就会不断中断。当然要给循环设置一个条件来退出循环,不然就会产生一个无限数列出来。
同样的,把函数改成generator函数后,我们基本上从来不会用next()
来获取下一个返回值,而是直接使用for
循环来迭代:
- >>> for n in fib(6):
- ... print(n)
- ...
- 1
- 1
- 2
- 3
- 5
- 8
但是用for
循环调用generator时,发现拿不到generator的return
语句的返回值。如果想要拿到返回值,必须捕获StopIteration
错误,返回值包含在StopIteration
的value
中:
- >>> g = fib(6)
- >>> while True:
- ... try:
- ... x = next(g)
- ... print('g:', x)
- ... except StopIteration as e:
- ... print('Generator return value:', e.value)
- ... break
- ...
- g: 1
- g: 1
- g: 2
- g: 3
- g: 5
- g: 8
- Generator return value: done
关于如何捕获错误,后面的错误处理还会详细讲解。
杨辉三角定义如下:
- 1
- / \
- 1 1
- / \ / \
- 1 2 1
- / \ / \ / \
- 1 3 3 1
- / \ / \ / \ / \
- 1 4 6 4 1
- / \ / \ / \ / \ / \
- 1 5 10 10 5 1
把每一行看做一个list,试写一个generator,不断输出下一行的list:
- def triangles():
- L = [1]
- yield L
- while True:
- L = [1] + [L[i] + L[i + 1] for i in range(len(L) - 1)] + [1]
- yield L
-
-
- # 期待输出:
- # [1]
- # [1, 1]
- # [1, 2, 1]
- # [1, 3, 3, 1]
- # [1, 4, 6, 4, 1]
- # [1, 5, 10, 10, 5, 1]
- # [1, 6, 15, 20, 15, 6, 1]
- # [1, 7, 21, 35, 35, 21, 7, 1]
- # [1, 8, 28, 56, 70, 56, 28, 8, 1]
- # [1, 9, 36, 84, 126, 126, 84, 36, 9, 1]
- n = 0
- results = []
- for t in triangles():
- results.append(t)
- n = n + 1
- if n == 10:
- break
-
- for t in results:
- print(t)
-
- if results == [[1], [1, 1], [1, 2, 1], [1, 3, 3, 1], [1, 4, 6, 4, 1],
- [1, 5, 10, 10, 5, 1], [1, 6, 15, 20, 15, 6, 1],
- [1, 7, 21, 35, 35, 21, 7, 1], [1, 8, 28, 56, 70, 56, 28, 8, 1],
- [1, 9, 36, 84, 126, 126, 84, 36, 9, 1]]:
- print('测试通过!')
- else:
- print('测试失败!')
'运行
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。