To write a program to find the maximum of a list of numbers.
- Hardware – PCs
- Anaconda – Python 3.7 Installation / Moodle-Code Runner
- Get the list of marks as input
- Use the sort() function or max() function or use the for loop to find the maximum mark.
- Return the maximum value
'''
Program to mark the maximum of marks using the list method sort
Developed by: your name: jegadeesh
RegisterNumber: 22004355
'''
def max_marks(marks):
marks.sort()
return marks[-1]
'''
Program to find the maximum marks using the list method max().
Developed by:jegadeesh
RegisterNumber: 22004355
'''
def max_marks(marks):
large =max(marks)
return large'''
Program to the maximum marks without using builtin functions.
Developed by:jegadeesh
RegisterNumber: 22004355
'''
def max_marks(list1):
max1 = list1[0]
for i in list1:
if i >= max1:
max1 = i
return max1
Thus the program to find the maximum of given numbers from the list is written and verified using python programming.


