You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please note, that the data type of columns must be the same (e.g. both lists or both tuples) otherwise you cannot use the "+" to join them. If they are different, you would need to manually change it like:
Hello,
First of all, thanks for writing this Linque library. This is the best linq alternative for python.
I want to select multiple columns;
This works for one column:
Linque(mydict).select(lambda d: d['phones']).flatten(lambda d: d)
But I need something like;
Linque(mydict).select(lambda d: d['phones'] or d['mobilephones']).flatten(lambda d: d)
Is this possible? If not can yolu please develop this feature?
The text was updated successfully, but these errors were encountered: