Here's my tuple of tuples:
(('dlazarov',), ('ant1',))
I would like to turn this into this:
['dlazarov', 'ant1']
I was trying to use this:
userdata = (('dlazarov',), ('ant1',))
userdata = map(list, userdata)
userdata = sum(userdata, [])
But this doesn't seem to work.
Nevermind, I had a typo in my end.
Also - question, if you guys want to answer it - where is the best way to get better with knowledge on lists, itertools, etc. I keep using inefficient workarounds that I know well, but which are definitely inefficient, and time consuming. Hell, half the time, I have to use strings and splitting to turn things into a list.
>>> map(list, (('abc',), ('def',)))evaluates to[['abc'], ['def']]– Matt Fenwick Nov 14 '11 at 21:37sum()step... :-) – kindall Nov 14 '11 at 21:44