I am trying to understand if it makes sense to take the content of a list and append it to another list.
I have the first list created through a loop function, that
You can also combine two lists (say a,b) using the '+' operator. For example,
a = [1,2,3,4] b = [4,5,6,7] c = a + b Output: >>> c [1, 2, 3, 4, 4, 5, 6, 7]