How To Append Elements Of One List Into Another List Using Python
Here is List1,
list1 = ["Red", "Blue", "Green"]
and list2
list2 = ["Silver","Yellow","Gray"]
I want to append the elements of list1 into list2 and the result should be in list1. How it is possible in Python?