Daily Archives: November 7, 2011

python: how to flatten a nested list

Simple nested list of strings Suppose that you have a simple nested list. Simple in the sense that there is only one level: data = [[’a’,’b’], [’c’], [’d’]]data = [[‘a’,’b’], [‘c’], [‘d’]] you can use the operator module and reduce … Continue reading

Posted in Python | Tagged | Leave a comment