append all contents of a list to another python list code example
Example: python add all values of another list
a = [1, 2, 3]
b = [4, 5, 6]
a += b
# another way: a.extend(b)
a = [1, 2, 3]
b = [4, 5, 6]
a += b
# another way: a.extend(b)