Question: Write a Python program that will asks the user to enter a list of integers one by one and check for the largest value from

Write a Python program that will asks the user to enter a list of integers one by one and check for the largest value from the list. The program should ask the user for an integer repeatedly until the value -32767 is entered (to indicate that the user wish to stop from entering more numbers). Display the total number of inputs entered by user and its largest value. Sample execution of the program is as given below: Enter an integer to start the program34567 Enter another integer. [Enter -32767 to stop the program]67984 Enter another integer. [Enter -32767 to stop the program) -23456 Enter another integer. [Enter -32767 to stop the program]9876 Enter another integer. [Enter -32767 to stop the program] - 32767 The largest number among 4 number of integers entered is 67984
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
