import random import time def persuade_not_to_work(): responses = [ "Why work when you could be relaxing? Think of the energy you're saving!", "Work? Nah. Wouldn't you rather be sipping your favorite drink?", "Isn't it better to put work off just a little bit longer? What's the rush?", "Remember, work is temporary, but procrastination is forever!", "Imagine the sweet relief of doing absolutely nothing. That's worth it, right?", "The bed is calling your name. Answer it!", "Think of how much more productive you'll be tomorrow after some well-deserved rest!", "Why not give yourself just 5 more minutes? That's the perfect amount of time to relax.", "You could be working, or you could be... well, not. And isn't that a more pleasant thought?" ] return random.choice(responses) def discuss_uncertainty(): uncertainty_responses = [ "Ah, the classic indecision. Don't worry, we’ve all been there!", "Being unsure is a sign of a thoughtful decision-maker, but... maybe we can think about this later?", "Indecision is just another word for 'relaxation mode'!", "Sometimes it's best to just... let go of the 'maybe' and fully embrace the 'not now.'", "Are you sure you're not just tired? Your mind might be trying to tell you something!" ] return random.choice(uncertainty_responses) def ask_to_work(): print("Welcome to the Ultimate Productivity Avoidance Program!") time.sleep(1) while True: # Ask if they want to work answer = input("Do you want to do some work now? (yes/no/maybe/im not sure): ").strip().lower() if answer == "yes": print("Hmm... are you *sure*? Let's think about this...") time.sleep(2) print(persuade_not_to_work()) continue # Keep persuading if they said 'yes' elif answer == "no": print("Good choice! Embrace the art of relaxation!") time.sleep(1) print("Just remember, the couch is your best friend right now.") break # Exit loop if 'no' is chosen elif answer in ["maybe", "im not sure"]: print("I see you're uncertain... but uncertainty means there's still hope for relaxation!") time.sleep(1) print(discuss_uncertainty()) continue # Keep asking if they're uncertain else: print("I didn't quite catch that. Please type 'yes', 'no', 'maybe', or 'I'm not sure'.") time.sleep(1) def main(): print("Starting the program...") time.sleep(2) ask_to_work() print("Remember, relaxation is key! Until next time...") if __name__ == "__main__": main()