Python的列表推导 Posted on 2017-05-31 | Post modified: 2018-07-22 Python的列表推导 列表推导 py2中的列表推导式,使用的变量是全局的;py3中的列表推导式,生成器推导,set推导,dict的推导都是使用的局部变量域 py的括号中,可以省略使用换行符 12345678## python3In [105]: a='hello'In [106]: [a for a in 'ABC']Out[106]: ['A', 'B', 'C']In [107]: aOut[107]: 'hello' 12345678## python2In [1]: a='hello'In [2]: [a for a in 'ABC']Out[2]: ['A', 'B', 'C']In [3]: aOut[3]: 'C' 生成器推导 和列表推导的语法结构一样,只是用小括号