Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to combine two lists in python

l1 = ["a", "b" , "c"]
l2 = [1, 2, 3]
l1 + l2
>>> ['a', 'b', 'c', 1, 2, 3]
Source by www.py4e.com #
 
PREVIOUS NEXT
Tagged: #combine #lists #python
ADD COMMENT
Topic
Name
3+9 =