Timeline for How do I make a flat list out of a list of lists?
Current License: CC BY-SA 4.0
6 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| S Nov 19, 2019 at 16:26 | history | suggested | Shan-mk | CC BY-SA 4.0 | Fixed grammar and spelling |
| Nov 19, 2019 at 16:16 | review | Suggested edits | |||
| S Nov 19, 2019 at 16:26 | |||||
| Jul 2, 2019 at 12:24 | comment | added | Markus Dutschke | for python 3 add from functools import reduce | |
| Sep 24, 2011 at 10:12 | comment | added | agf | extend is better used as newlist = [], extend = newlist.extend, for sublist in l: extend(l) as it avoids the (rather large) overhead of the lambda, the attribute lookup on x, and the or. | |
| Jun 4, 2009 at 20:50 | vote | accept | Emma | ||
| Jun 4, 2009 at 21:23 | |||||
| Jun 4, 2009 at 20:47 | history | answered | Igor Krivokon | CC BY-SA 2.5 |