Is it possible to project the second argument of the inner function when mapping across a set of items in Python?
when using map with the monadic use of the int cast function it works simply:
list(map(int, ["4","3","1","2"]))
But I want to cast multiple binary digits to an int using int's dyadic form int("1101",2) using map:
list(map(int(,2), ["1101","0001","1100","0011"]))