Please write the code with python. I WILL UPVOTE ASAP You will develop a modular Number Analysis Program (using function
Posted: Sun Jul 10, 2022 11:23 am
Please write the code with python.
I WILL UPVOTE ASAP
You will develop a modular Number Analysis Program (usingfunctions, lists, loops, andselections) as described below:a) Write a modular program (using functions), that accepts from theuser a series of 5 numbers (using a loop) andstores the numbers in a list. The program should then determine thefollowing data calling appropriate functions(do not use readily available standard functions like min, max,sum, sort, etc.!) . Find:• The lowest number in the list• The highest number in the list• The sum of the numbers in the list• The average of the numbers in the list i) Use CONSTANTSappropriately (for example: LIST_SIZE)i) Use descriptive and appropriate variable and function names withcamelCase naming style (for example:numsList, getNums(), findLo(), findHi(), etc.)ii) Keep proper documentation for understandability of your programby adding comments in the program.iii) Use proper indentation and blank/line spaces in your programfor readability of your code/program.iv) Within a comment block have a paragraph description prior toeach function describing in your own wordsexplaining the purpose/logic of that function.
I WILL UPVOTE ASAP
You will develop a modular Number Analysis Program (usingfunctions, lists, loops, andselections) as described below:a) Write a modular program (using functions), that accepts from theuser a series of 5 numbers (using a loop) andstores the numbers in a list. The program should then determine thefollowing data calling appropriate functions(do not use readily available standard functions like min, max,sum, sort, etc.!) . Find:• The lowest number in the list• The highest number in the list• The sum of the numbers in the list• The average of the numbers in the list i) Use CONSTANTSappropriately (for example: LIST_SIZE)i) Use descriptive and appropriate variable and function names withcamelCase naming style (for example:numsList, getNums(), findLo(), findHi(), etc.)ii) Keep proper documentation for understandability of your programby adding comments in the program.iii) Use proper indentation and blank/line spaces in your programfor readability of your code/program.iv) Within a comment block have a paragraph description prior toeach function describing in your own wordsexplaining the purpose/logic of that function.