Write a Python program that reads 5 numbers into a list and prints the second largest number and its location or index position on the list. [You are not allowed to use the max(), sort(), sorted() function here]
Sample Input:7, 13, 2, 10, 6
Sample Output:My list: [7, 13, 2, 10, 6]second largest number in the list is 10 which was found at index 3.
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here