Question: Integer num _ pets is read from input. If num _ pets is more than 1 2 , then output num _ pets, followed by

Integer num_pets is read from input. If num_pets is more than 12, then output num_pets, followed by : Way too many pets:
Click here for examples
Ex 1: If the input is 14, then the output is:
14: Way too many pets
Ex 2: If the input is 10, then no output is produced.
1 num_pets =(input())
if num_pets >12 :
4 print('{:.0f}: Way too many pets'. format(num_pets))
5 else:
6 print()
 Integer num_pets is read from input. If num_pets is more than

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!