当前位置:   article > 正文

python基础(8)高级特性:列表生成式、生成器

列表生成式

列表生成式 - 廖雪峰的官方网站 (liaoxuefeng.com)

目录

列表生成

 if ... else

练习

生成器 

next()

yield 

练习


 

列表生成式

列表生成式即List Comprehensions,是Python内置的非常简单却强大的可以用来创建list的生成式。

举个例子,要生成list [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]可以用list(range(1, 11))

  1. >>> list(range(1, 11))
  2. [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

但如果要生成[1x1, 2x2, 3x3, ..., 10x10]怎么做?方法一是循环:

  1. >>> L = []
  2. >>> for x in range(1, 11):
  3. ... L.append(x * x)
  4. ...
  5. >>> L
  6. [1, 4, 9, 16, 25, 36, 49, 64, 81, 100]

但是循环太繁琐,而列表生成式则可以用一行语句代替循环生成上面的list:

  1. >>> [x * x for x in range(1, 11)]
  2. [1, 4, 9, 16, 25, 36, 49, 64, 81, 100]

写列表生成式时,把要生成的元素x * x放到前面,后面跟for循环,就可以把list创建出来,十分有用,多写几次,很快就可以熟悉这种语法。

for循环后面还可以加上if判断,这样我们就可以筛选出仅偶数的平方:

  1. >>> [x * x for x in range(1, 11) if x % 2 == 0]
  2. [4, 16, 36, 64, 100]

还可以使用两层循环,可以生成全排列:

  1. >>> [m + n for m in 'ABC' for n in 'XYZ']
  2. ['AX', 'AY', 'AZ', 'BX', 'BY', 'BZ', 'CX', 'CY', 'CZ']

运用列表生成式,可以写出非常简洁的代码。例如,列出当前目录下的所有文件和目录名,可以通过一行代码实现:

  1. >>> import os # 导入os模块,模块的概念后面讲到
  2. >>> [d for d in os.listdir('.')] # os.listdir可以列出文件和目录
  3. ['.emacs.d', '.ssh', '.Trash', 'Adlm', 'Applications', 'Desktop', 'Documents', 'Downloads', 'Library', 'Movies', 'Music', 'Pictures', 'Public', 'VirtualBox VMs', 'Workspace', 'XCode']

for循环其实可以同时使用两个甚至多个变量,比如dictitems()可以同时迭代key和value:

  1. >>> d = {'x': 'A', 'y': 'B', 'z': 'C' }
  2. >>> for k, v in d.items():
  3. ... print(k, '=', v)
  4. ...
  5. y = B
  6. x = A
  7. z = C

因此,列表生成式也可以使用两个变量来生成list:

  1. >>> d = {'x': 'A', 'y': 'B', 'z': 'C' }
  2. >>> [k + '=' + v for k, v in d.items()]
  3. ['y=B', 'x=A', 'z=C']

最后把一个list中所有的字符串变成小写:

  1. >>> L = ['Hello', 'World', 'IBM', 'Apple']
  2. >>> [s.lower() for s in L]
  3. ['hello', 'world', 'ibm', 'apple']

 if ... else

使用列表生成式的时候,有些童鞋经常搞不清楚if...else的用法。

例如,以下代码正常输出偶数:

  1. >>> [x for x in range(1, 11) if x % 2 == 0]
  2. [2, 4, 6, 8, 10]

但是,我们不能在最后的if加上else

  1. >>> [x for x in range(1, 11) if x % 2 == 0 else 0]
  2. File "<stdin>", line 1
  3. [x for x in range(1, 11) if x % 2 == 0 else 0]
  4. ^
  5. SyntaxError: invalid syntax

这是因为跟在for后面的if是一个筛选条件,不能带else,否则如何筛选? 

 另一些童鞋发现把if写在for前面必须加else,否则报错:

这是因为for前面的部分是一个表达式,它必须根据x计算出一个结果。因此,考察表达式:x if x % 2 == 0,它无法根据x计算出结果,因为缺少else,必须加上else

  1. >>> [x if x % 2 == 0 else -x for x in range(1, 11)]
  2. [-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()方法,所以列表生成式会报错:

  1. >>> L = ['Hello', 'World', 18, 'Apple', None]
  2. >>> [s.lower() for s in L]
  3. Traceback (most recent call last):
  4. File "<stdin>", line 1, in <module>
  5. File "<stdin>", line 1, in <listcomp>
  6. AttributeError: 'int' object has no attribute 'lower'

使用内建的isinstance函数可以判断一个变量是不是字符串:

  1. >>> x = 'abc'
  2. >>> y = 123
  3. >>> isinstance(x, str)
  4. True
  5. >>> isinstance(y, str)
  6. False

请修改列表生成式,通过添加if语句保证列表生成式能正确地执行:

  1. L1 = ['Hello', 'World', 18, 'Apple', None]
  2. L2 = [s.lower() for s in L1 if isinstance(s,str)]
  3. print(L2)
  4. if L2 == ['hello', 'world', 'apple']:
  5. print('测试通过!')
  6. else:
  7. print('测试失败!')
'
运行

生成器 

通过列表生成式,我们可以直接创建一个列表。但是,受到内存限制,列表容量肯定是有限的。而且,创建一个包含100万个元素的列表,不仅占用很大的存储空间,如果我们仅仅需要访问前面几个元素,那后面绝大多数元素占用的空间都白白浪费了

所以,如果列表元素可以按照某种算法推算出来,那我们是否可以在循环的过程中不断推算出后续的元素呢?这样就不必创建完整的list,从而节省大量的空间。在Python中,这种一边循环一边计算的机制,称为生成器:generator。

要创建一个generator,有很多种方法。第一种方法很简单,只要把一个列表生成式的[]改成(),就创建了一个generator:

  1. >>> L = [x * x for x in range(10)]
  2. >>> L
  3. [0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
  4. >>> g = (x * x for x in range(10))
  5. >>> g
  6. <generator object <genexpr> at 0x1022ef630>

创建Lg的区别仅在于最外层的[]()L是一个list,而g是一个generator。

next()

我们可以直接打印出list的每一个元素,但我们怎么打印出generator的每一个元素呢?

如果要一个一个打印出来,可以通过next()函数获得generator的下一个返回值:

  1. >>> next(g)
  2. 0
  3. >>> next(g)
  4. 1
  5. >>> next(g)
  6. 4
  7. >>> next(g)
  8. 9
  9. >>> next(g)
  10. 16
  11. >>> next(g)
  12. 25
  13. >>> next(g)
  14. 36
  15. >>> next(g)
  16. 49
  17. >>> next(g)
  18. 64
  19. >>> next(g)
  20. 81
  21. >>> next(g)
  22. Traceback (most recent call last):
  23. File "<stdin>", line 1, in <module>
  24. 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, ...

斐波拉契数列用列表生成式写不出来,但是,用函数把它打印出来却很容易:

  1. def fib(max):
  2. n, a, b = 0, 0, 1
  3. while n < max:
  4. print(b)
  5. a, b = b, a + b
  6. n = n + 1
  7. return 'done'
'
运行

注意,赋值语句:

a, b = b, a + b

仔细观察,可以看出,fib函数实际上是定义了斐波拉契数列的推算规则,可以从第一个元素开始,推算出后续任意的元素,这种逻辑其实非常类似generator。

yield 

也就是说,上面的函数和generator仅一步之遥。要把fib函数变成generator函数,只需要把print(b)改为yield b就可以了:

  1. def fib(max):
  2. n, a, b = 0, 0, 1
  3. while n < max:
  4. yield b
  5. a, b = b, a + b
  6. n = n + 1
  7. return 'done'
'
运行

这就是定义generator的另一种方法。如果一个函数定义中包含yield关键字,那么这个函数就不再是一个普通函数,而是一个generator函数,调用一个generator函数将返回一个generator: 

  1. >>> f = fib(6)
  2. >>> f
  3. <generator object fib at 0x104feaaa0>

这里,最难理解的就是generator函数和普通函数的执行流程不一样。普通函数是顺序执行,遇到return语句或者最后一行函数语句就返回。而变成generator的函数,在每次调用next()的时候执行,遇到yield语句返回,再次执行时从上次返回的yield语句处继续执行

举个简单的例子,定义一个generator函数,依次返回数字1,3,5:

  1. def odd():
  2. print('step 1')
  3. yield 1
  4. print('step 2')
  5. yield(3)
  6. print('step 3')
  7. yield(5)
'
运行

调用该generator函数时,首先要生成一个generator对象,然后用next()函数不断获得下一个返回值:

  1. >>> o = odd()
  2. >>> next(o)
  3. step 1
  4. 1
  5. >>> next(o)
  6. step 2
  7. 3
  8. >>> next(o)
  9. step 3
  10. 5
  11. >>> next(o)
  12. Traceback (most recent call last):
  13. File "<stdin>", line 1, in <module>
  14. StopIteration

可以看到,odd不是普通函数,而是generator函数,在执行过程中,遇到yield就中断,下次又继续执行。执行3次yield后,已经没有yield可以执行了,所以,第4次调用next(o)就报错。

 请务必注意:调用generator函数会创建一个generator对象,多次调用generator函数会创建多个相互独立的generator。 

有的童鞋会发现这样调用next()每次都返回1:

  1. >>> next(odd())
  2. step 1
  3. 1
  4. >>> next(odd())
  5. step 1
  6. 1
  7. >>> next(odd())
  8. step 1
  9. 1

原因在于odd()会创建一个新的generator对象,上述代码实际上创建了3个完全独立的generator,对3个generator分别调用next()当然每个都会返回第一个值。

正确的写法是创建一个generator对象,然后不断对这一个generator对象调用next()

  1. >>> g = odd()
  2. >>> next(g)
  3. step 1
  4. 1
  5. >>> next(g)
  6. step 2
  7. 3
  8. >>> next(g)
  9. step 3
  10. 5

回到fib的例子,我们在循环过程中不断调用yield,就会不断中断。当然要给循环设置一个条件来退出循环,不然就会产生一个无限数列出来。

同样的,把函数改成generator函数后,我们基本上从来不会用next()来获取下一个返回值,而是直接使用for循环来迭代:

  1. >>> for n in fib(6):
  2. ... print(n)
  3. ...
  4. 1
  5. 1
  6. 2
  7. 3
  8. 5
  9. 8

但是用for循环调用generator时,发现拿不到generator的return语句的返回值。如果想要拿到返回值,必须捕获StopIteration错误,返回值包含在StopIterationvalue中:

  1. >>> g = fib(6)
  2. >>> while True:
  3. ... try:
  4. ... x = next(g)
  5. ... print('g:', x)
  6. ... except StopIteration as e:
  7. ... print('Generator return value:', e.value)
  8. ... break
  9. ...
  10. g: 1
  11. g: 1
  12. g: 2
  13. g: 3
  14. g: 5
  15. g: 8
  16. Generator return value: done

关于如何捕获错误,后面的错误处理还会详细讲解。

练习

杨辉三角定义如下:

  1. 1
  2. / \
  3. 1 1
  4. / \ / \
  5. 1 2 1
  6. / \ / \ / \
  7. 1 3 3 1
  8. / \ / \ / \ / \
  9. 1 4 6 4 1
  10. / \ / \ / \ / \ / \
  11. 1 5 10 10 5 1

把每一行看做一个list,试写一个generator,不断输出下一行的list:

 

  1. def triangles():
  2. L = [1]
  3. yield L
  4. while True:
  5. L = [1] + [L[i] + L[i + 1] for i in range(len(L) - 1)] + [1]
  6. yield L
  7. # 期待输出:
  8. # [1]
  9. # [1, 1]
  10. # [1, 2, 1]
  11. # [1, 3, 3, 1]
  12. # [1, 4, 6, 4, 1]
  13. # [1, 5, 10, 10, 5, 1]
  14. # [1, 6, 15, 20, 15, 6, 1]
  15. # [1, 7, 21, 35, 35, 21, 7, 1]
  16. # [1, 8, 28, 56, 70, 56, 28, 8, 1]
  17. # [1, 9, 36, 84, 126, 126, 84, 36, 9, 1]
  18. n = 0
  19. results = []
  20. for t in triangles():
  21. results.append(t)
  22. n = n + 1
  23. if n == 10:
  24. break
  25. for t in results:
  26. print(t)
  27. if results == [[1], [1, 1], [1, 2, 1], [1, 3, 3, 1], [1, 4, 6, 4, 1],
  28. [1, 5, 10, 10, 5, 1], [1, 6, 15, 20, 15, 6, 1],
  29. [1, 7, 21, 35, 35, 21, 7, 1], [1, 8, 28, 56, 70, 56, 28, 8, 1],
  30. [1, 9, 36, 84, 126, 126, 84, 36, 9, 1]]:
  31. print('测试通过!')
  32. else:
  33. print('测试失败!')
'
运行

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/爱喝兽奶帝天荒/article/detail/944202
推荐阅读
相关标签
  

闽ICP备14008679号