I am trying to convert a nested list of lists into a list of tuples in Python 3.3. However, it seems that I don\'t have the logic to do that.
The input looks as bel
[tuple(l) for l in nested_lst]