This is a Python Program to find the largest number in a list.
Problem Description
The program takes a list and prints the largest number in the list.
Problem Solution
1. Take in the number of elements and store it in a variable.
2. Take in the elements of the list one by one.
3. Sort the list in ascending order.
4. Print the last element of the list.
5. Exit.
Program/Source Code
Here is source code of the Python Program to find the largest number in a list. The program output is also shown below.
a=[]
n=int(input(“Enter number of elements:”))
for i in range(1,n+1):
b=int(input(“Enter element:”))
a.append(b)
a.sort()
print(“Largest element is:”,a[n-1])
Runtime Test Cases
Case 1:
Enter number of elements:3
Enter element:23
Enter element:567
Enter element:3
Largest element is: 567
Case 2:
Enter number of elements:4
Enter element:34
Enter element:56
Enter element:24
Enter element:54
Largest element is: 56