|
|
|
|
|
by recursive
3347 days ago
|
|
As far as I can tell, you're complaining about one character. This works. >>> add = lambda a, b: a + b
>>> t = (1, 2)
>>> add(*t)
3
Is that extra asterisk the problem? Again, if you want a materialized list, pass it to `list()`. Projection failures will raise then. |
|