Answers for "how to add a list to a list python as a list only"

5

how to append to a list of lists in python

list_of_Lists = [[1,2,3],['hello','world'],[True,False,None]]
list_of_Lists.append([1,'hello',True])
ouput = [[1, 2, 3], ['hello', 'world'], [True, False, None], [1, 'hello', True]]
Posted by: Guest on July-08-2020
1

python add all values of another list

a = [1, 2, 3]
b = [4, 5, 6]
a += b
# another way: a.extend(b)
Posted by: Guest on February-03-2020

Code answers related to "how to add a list to a list python as a list only"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language