Page 1 of 1

list1 = [1,2,3] list2 = [4,5,6] list3 = list2 + list1 print("Concatenated List is " + str(list3)) in python, use above

Posted: Mon Jul 11, 2022 9:56 am
by answerhappygod
list1 = [1,2,3]list2 = [4,5,6]list3 = list2 + list1 print("Concatenated List is " + str(list3))
in python, use above code but instead of using two given listsof integers, ask user to input two lists of integers toconcatenate.