Python:项目的子列表取决于项目的某个值,例如布尔值
我有一个类似对象的列表,其中一些具有特定的值集,这里更具体地说是一个布尔标志:
myList = [WhatEver(..., True, ...), WhatEver(..., True, ...), WhatEver(..., False, ...), WhatEver(..., True, ...), WhatEver(..., False, ...), ...]
Python 中是否有一种轻松的方法来获取其值设置为特定值的项目的子列表,这里要么 <代码>True还是False
?
I have a list of similar objects, some of them have a certain value set, here more specifically a boolean flag:
myList = [WhatEver(..., True, ...), WhatEver(..., True, ...), WhatEver(..., False, ...), WhatEver(..., True, ...), WhatEver(..., False, ...), ...]
Is there a painless way in Python to get a sub list of items whose value is set to a specific value, here either True
or False
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,有。 列表推导式 非常适合这种情况:
其中
flag
是您要检查的WhatEver
字段的名称。Yes, there is. List comprehensions are a very good fit for this:
where
flag
is the name ofWhatEver
's field that you want to check.使用
过滤器
:Use
filter
: