I've got a list like so:
counters = [["0"],["0"],["0"],["0"]]
I'd like to perform an operation to each of the inner values - say concatenation, converting to an int
and incrementing, etc.
How can I do this for all of the list items; given that this is a multi-dimensional list?