Question: Question 1 2 2 p t s What will be the output after the following code is executed and the user enters 7 5 and

Question 12
2pts
What will be the output after the following code is executed and the user enters 75 and 0 at the first two prompts?
def main():
try:
total = int (input("Enter total cost of items? "))
num_items = int (input ("Number of items "))
average = total / num_items
except ZeroDivisionError:
print ('ERROR: cannot have items')
except ValueError:
print('ERROR: number of items cannot be negative')
if ()main()'_:
Nothing; there is no print statement to display average.
0
ERROR: number of items can' t be negative
ERROR: cannot have items
 Question 12 2pts What will be the output after the following

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!