You can also assign the new elements that you want to add to the list to a new variable as follows: This is a simple way to add elements to a list, let's see more information on how the Python list ...
num.extend(num2) # Unlike append it does not add the list inside the list It add the element of another list to the other list num.extend(num2) # Add the element of Tuple num.extend(num3) # Add the ...