I would like to convert the tuple of tuples into a list of lists.
I don't want to flatten it, unlike these questions, and I don't want to make it a numpy array like in this question.
My only idea so far is to iterate the tuples with for loops and copy the values, but there must be something cleaner and more pythonic.