+1 vote
in Class 12 by kratos

What will be the output of the following Python code considering the following set of inputs?

MAYA

Your 5 Apples

Mine2

412

Also, explain the try and except used in the code.

Count = 0

while True :

try:

Number=int (raw input ("Input a Number :"))

break

Except valueError :

Count=Count + 2

For later versions of python, raw_input

Should be consider as input

methods:

– DenCal () # Method to calculate Density as People/Area

– Add () # Method to allow user to enter values Dcode, DName, People, Area and Call DenCal () Mehtod

– View () # Method to display all the data members also display a message “”High Population” if the Density is more than 8000.

1 Answer

+3 votes
by kratos
 
Best answer

Output is below

2 Re-Enter Number

10 Re-Enter Number

5 Input = Number

3 Input = number

Try and except are used for handling an exception in the Python code.

...