Saved Bookmarks
| 1. |
What will be the output of the following Python code considering the following set of inputs?MAYAYour 5 ApplesMine2412Also, explain the try and except used in the code.Count = 0while True :try:Number=int (raw input ("Input a Number :"))breakExcept valueError :Count=Count + 2# For later versions of python, raw_input# Should be consider as inputmethods: – 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. |
|
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. |
|