I want to print out the nth value of the the maximum number within a list
list_= [1,3,2,2,8,11,4]
max_val = max(list_)
Expected output
The maximum value of 11 is at the 6th place from the start of the order
I want to print out the nth value of the the maximum number within a list
list_= [1,3,2,2,8,11,4]
max_val = max(list_)
Expected output
The maximum value of 11 is at the 6th place from the start of the order