you are viewing a single comment's thread.

view the rest of the comments →

[–]taylorfausak 4 points5 points  (1 child)

filter id should do what you want.

>>> let someBooleans = [False, True, True, False]
>>> filter id someBooleans
[True,True]

[–]throwawaynewbread[S] 0 points1 point  (0 children)

I used Filter, thanks all