re solution in Creative category for Flatten a List by Talim42
import re flat_list=lambda l:eval("["+re.sub("[\[\]]","",str(l))+"]")#59
May 8, 2014