Suriin ang malawak na saklaw ng mga paksa at makakuha ng mga sagot sa IDNStudy.com. Sumali sa aming interactive na platform ng tanong at sagot para sa mabilis at eksaktong tugon mula sa mga propesyonal sa iba't ibang larangan.

Where's the biggest one codechum python?

Sagot :

Answer:
n = [int(i) for i in input("Input 5 . separated integers: ").split('.')][:5]
max_value = max(n)
index = n.index(max_value)




if index==0:
print("Leftmost")




elif index==2:
print("Middle")
elif index==4:
print("Rightmost")
else:
print("Unknown")


Explanation:
Hope this helps!