Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

# Badge: Haunted House Explorer # Initialize the total hours spent in the house total _ hours = 0 # Function to explore a room

# Badge: Haunted House Explorer
# Initialize the total hours spent in the house
total_hours =0
# Function to explore a room
def explore_room(room_name):
spooky_descriptions ={
"Living Room": "You feel a cold breeze and hear faint whispers in the air.",
"Kitchen": "The old dishes rattle as if someone is cooking in the dark.",
"Bedroom": "The creaking sound of footsteps echoes through the room.",
}
# Display the spooky description for the selected room
print(f"
You enter the {room_name}.{spooky_descriptions.get(room_name)}")
# Main program loop
while True:
# Display options to the user
print("
Choose an option:")
print("1. Explore the Living Room")
print("2. Explore the Kitchen")
print("3. Explore the Bedroom")
print("4. Leave the Haunted House")
# Get user input
choice = input("Enter the number of your choice: ")
# Logic to earn the badge (keeping track of total hours)
if choice.isdigit():
choice = int(choice)
if 1<= choice <=3:
total_hours +=1
explore_room(["Living Room", "Kitchen", "Bedroom"][choice -1])
elif choice ==4:
print(f"You have spent a total of {total_hours} hours in the haunted house. Farewell!")
break
else:
print("Invalid choice. Please enter a number between 1 and 4.")
else:
print("Invalid input. Please enter a number.") explain how the hour tracker works , keep the badge name make sure you included this in code and leave a comment explaining the program

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions

Question

What attracts you about this role?

Answered: 1 week ago

Question

How many states in India?

Answered: 1 week ago

Question

HOW IS MARKETING CHANGING WITH ARTIFITIAL INTELIGENCE

Answered: 1 week ago

Question

Different types of Grading?

Answered: 1 week ago

Question

2. What efforts are countries making to reverse the brain drain?

Answered: 1 week ago