A complicated tuple generated by sqlite3. Like this:
[('1', '2', '3')]
How can I convert a tuple into a list like with this output:
[('1',), ('2',), ('3',)]
to
['1', '2', '3']
?
list(arr) does not work, sum(list(arr), []) does not work either.