Hotel Room Booking Project
In this mini project, we have multiple options for the user to select the different type of Rooms (VVIP, VIP or Normal). Each room has different charges. Here we can set manually user balance and check user balance on each type of room option charges. - If user_balance => room_charges then room has been granted to user - else user_balance will check on each stage (VIP and Normal) - If still user_balance is < room_charges then message prompted "You don't have enough balance, Thank You" # ----------------------- CODE -------------------- from random import randint import time def displayintro(): print() print() print("+++++++++++++++++++") print("___________________") print("WELCOME TO PC HOTEL") print("Lahore, Pakistan") print("________________") print() def useroption(): option = "" while option != "1" and op...