x = [["a","b"], ["c"]] result = [] [ result.extend(el) for el in x] for el in result: print el
参考
https://stackoverflow.com/questions/716477/join-list-of-lists-in-python

x = [["a","b"], ["c"]] result = [] [ result.extend(el) for el in x] for el in result: print el
参考
https://stackoverflow.com/questions/716477/join-list-of-lists-in-python