Advertisement
here2share

# list_join_lists.py

Sep 7th, 2015
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.07 KB | None | 0 0
  1. # list_join_lists.py
  2.  
  3. x = [["a","b"], ["c"], [1,2,3]]
  4.  
  5. print sum(x, [])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement