Write a Python function called sumList () which will receive a list of integers as input parameter. sumList() must: a) Print the list b) Sum all the numbers in a list and print the total. The main...


Write a Python function called sumList () which will receive a list of integers as input
parameter. sumList() must:
a) Print the list
b) Sum all the numbers in a list and print the total.
The main section of your program must:
c) Ask the user how many numbers the list should contain;
d) Create the list accordingly (containing randomly generated integers between 0
and 100);
e) Pass the list to sumList () for processing.
Example output if a list containing four numbers is passed to sumList()
[3, 47, 94, 1].
The total is: 145


Write a Python program that reads an integer representing a month of the year, and
then print the name of the month. Your program must include validation and error
handling code. Thus, if the user enters a value outside the range of 1-12; or characters
that cannot be converted to an integer, your code must print the appropriate
message and continue without crashing. (Hint: You may NOT USE any 'if' statements.)
Examples:
# Input: -5 Output: Please enter a number between 1 and 12:
# Input: gkl Output: Please enter numbers only
# Input: 6 Output: June



Jun 07, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here