#!/usr/local/bin/python2 l = [['hoge1'], ['hoge2', 'hoge3']] x = [] for e in l: x.extend(e) print x