InterviewSolution
Saved Bookmarks
| 1. |
Write a python program to print the largest of n numbers |
|
Answer» Explanation: Python PROGRAM to find largest of n numbers using max Take INPUT number for the length of the list using python input() function. Initialize an EMPTY list LST = [] . Read each number in your python program using a for loop . In the for loop append each number to the list. |
|