Aim:

To write a Python Program to find the maximum from a list of numbers.

Algorithm:

1. Create an empty list named l

2. Read the value of n

3. Read the elements of the list until n

4. Assign l[0] as maxno

5. If l[i]>maxno then set maxno=l[i]

6. Increment i by 1

7. Repeat steps 5-6 until i<n

8. Print the value of maximum number

Program:

l=[]

n=int(input("enter the upper limit"))

for i in range(0,n):

a=int(input("enter the numbers"))

l.append(a)

maxno=l[0]

for i in range(0,len(l)):

if l[i]>maxno:

maxno=l[i]

print("The maximum number is %d"%maxno)

Sample Output:

 Enter the upper limit 3

Enter the numbers 6

Enter the numbers 9

Enter the numbers 90

The maximum number is 90