Preface: Element-wise addition of 2 lists?
I want to write to code to have the following behavior:
[ 1, 1, ["Alpha"]]
+
[ 2, 2, ["Beta"] ]
|| || ||
\/ \/ \/
[3, 3, ["Alpha", "Beta"]]
in python. Is this possible without very messy comprehensions and mapping?