python_列表生成式

列表生成式的好处

  • 代码量少
  • 效率高

列表生成式的格式

[<元素的输出格式> ]
循环的省略
例子:

>>> [s for s in ('momo','huohuo',89,'54re') if isinstance(s,str)]
['momo', 'huohuo', '54re']
>>> [s+y for s in "ABC" for y in 'tmd']
['At', 'Am', 'Ad', 'Bt', 'Bm', 'Bd', 'Ct', 'Cm', 'Cd']

你可能感兴趣的:(python_列表生成式)