I need to build a list from a string in python using the [f(char) for char in string] syntax and I would like to be able to ignore (not insert in the list) the values of f(x) which are equal no None.
How can I do that ?
|
I need to build a list from a string in python using the [f(char) for char in string] syntax and I would like to be able to ignore (not insert in the list) the values of f(x) which are equal no None. How can I do that ? |
|||
|
|
|
We could create a "subquery".
If you allow all False values (0, False, None, etc.) to be ignored as well,
|
|||
|
|