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
i) # To find the maximum of marks using the list method sort.
ii) # To find the maximum marks using the list method max().
iii) # To find the maximum marks without using builtin functions.
Thus the program to find the maximum of given numbers from the list is written and verified using python programming.