17 Program to get the largest number of a list using Python Atharva Satyendra Agrawal January 29, 2020 Atharva Satyendra Agrawal Program: l = list() l = [int(x) for x in input("Enter any 5 value: ").split()] large = l[0] for i in l: if large <= i: large = i print("Largest Number is: ",large) Output: Tweet Share Share Share Related Post