92.1k views
11 votes
[80 points] Fill in the missing word.

class CatLady(Exception):
pass

answer = input("How many cats do you have? ")
cats = int(answer)
try:
if cats > 5:
raise CatLady
else:
print("You have", cats, "cats")
_________ CatLady:
print("You have a lot of cats!")

2 Answers

5 votes

Answer:

except

you can use github copilot for this question

User Peque
by
6.1k points
9 votes

Answer: except

Explanation: i took the test

User Cliff
by
5.6k points