Programming Examples

Python Program to find the successor and predecessor of the largest element in list


Python Program to find the successor and predecessor of the largest element in list

Solution

mylist=eval(input("Enter any List : "))
m=max(mylist)
mi=mylist.index(m)
#print(m," -> ",mi)
if mi>0:
    print("Predecessor of Largest No. ",mylist[mi-1])
else:
    print("No Predecessor Exist")

if mi<len(mylist)-1:
    print("Successor of Largest No. ",mylist[mi+1])
else:
    print("No Successor Exist")
Output


Enter any List : [1,2,3,5,2,1]

Predecessor of Largest No.  3

Successor of Largest No.  2

>>> 

======================

Enter any List : [1,2,3,4]

Predecessor of Largest No.  3

No Successor Exist

>>> 

======================

Enter any List : [4,3,2,1]

No Predecessor Exist

Successor of Largest No.  3

CCC Online Test Python Programming Tutorials Best Computer Training Institute in Prayagraj (Allahabad) Online Exam Quiz O Level NIELIT Study material and Quiz Bank SSC Railway TET UPTET Question Bank career counselling in allahabad Best Website and Software Company in Allahabad Website development Company in Allahabad