Untitled
unknown
plain_text
a year ago
715 B
4
Indexable
Never
```python # Step 1: Get user input day = input("What day is it? ") # Step 2: Display appropriate response based on user input if day == "Monday": print("It's Monday!") elif day == "Tuesday": print("It's Tuesday!") elif day == "Wednesday": print("It's Wednesday!") elif day == "Thursday": print("It's Thursday!") elif day == "Friday": print("It's Friday!") else: print("Invalid day input. Please try again.") # Step 3: Ask next question next_question = input("Do you have any other questions? (yes/no) ") if next_question == "yes": next_question = input("What would you like to know? ") print("I'm sorry, I cannot answer that question at this time.") else: print("Goodbye!") ```