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
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.
in python, use above code but instead of using two given listsof integers, ask user to input two lists of integers toconcatenate.