3,403 questions
6
votes
4
answers
42k
views
SQL to transpose row pairs to columns in MS ACCESS database
I have an MS Access database that contains translated sentences in source-target pairs (a translation memory for fellow users of CAT tools). Somewhat annoyingly, source and target are not stored in ...
615
votes
14
answers
217k
views
Transpose/Unzip Function (inverse of zip)?
I have a list of 2-item tuples and I'd like to convert them to 2 lists where the first contains the first item in each tuple and the second list holds the second item.
For example:
original = [('a', 1)...