Question: python program using input validation method Practice nested loop and input validation. A hotel's occupancy rate is calculated as follows: occupancy rate = Number of

 python program using input validation method Practice nested loop and input

python program using input validation method

Practice nested loop and input validation. A hotel's occupancy rate is calculated as follows: occupancy rate = Number of rooms occupied Total number of rooms Write a Python program that calculates the occupancy rate for each floor of a hotel. The program should start by asking for the number of floors in the hotel. A loop should then iterate once for each floor. During each iteration, the loop should ask the user for the number of rooms on the floor and the number of them that are occupied. After all the iterations, the program should display the number of rooms the hotel has, the number of them that are occupied, the number that are vacant, and the occupancy rate for the hotel. Your program does not accept a value less than 1 for the number of floors. Also do not accept a number less than 10 for the number of rooms on a floor. Your program is responsible for INPUT VALIDATION and allows users to make no more than three attempts. User interface specifications: . Input The program prompts users to enter the number of floors, and for each floor, (1) the number of rooms the specific floor has, (2) the number of occupied rooms the specific floor has. Each number must be entered in separate line, following the above sequencing. o . Output 1 2. 3. 4. The total number of rooms the hotel has The total number of occupied rooms The total number of vacant rooms The occupancy rate

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!