在 Python 2.54-6 中使用列表推导式有哪些优点和缺点?
我听说列表理解有时会很慢,但我不确定为什么?我是 Python 新手(具有 C# 背景),我想更多地了解何时使用列表理解和 for 循环。有什么想法、建议、意见或例子吗?感谢您的所有帮助。
I've heard that list comprehensions can be slow sometimes, but I'm not sure why? I'm new to Python (coming from a C# background), and I'd like to know more about when to use a list comprehension versus a for loop. Any ideas, suggestions, advice, or examples? Thanks for all the help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在适当的时候使用列表理解 (LC)。
例如,如果您将任何 ol' iterable 传递给函数,生成器表达式 (genexpr) 通常更合适,而 LC 是浪费:
或者,如果您不需要完整列表,则使用带有break 语句将是您的选择。 itertools 模块也有工具,例如 takewhile。
Use a list comprehension (LC) when it's appropriate.
For example, if you are passing any ol' iterable to a function, a generator expression (genexpr) is often more appropriate, and a LC is wasteful:
Or, if you don't need a full list, a for-loop with a break statement would be your choice. The itertools module also has tools, such as takewhile.