Programming Examples
Python program to display the maximum elements from the two list along with its index in its list
write a program to input two lists and display the maximum elements from the elements of both the list combined, along with its index in its list.
Output/ Explanation:
Enter List 1[4,5,6,2,3]
Enter List 2[8,3,4,2]
8 the maximum value in is in the list 2 at index 0