Advertisement
Edwinlga

selfcare_reminder_generator.py

Feb 8th, 2025
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.96 KB | Source Code | 0 0
  1. """
  2. Daily Python Projects
  3. Self-Care Reminder Generator
  4. Level 1: Beginner
  5. https://dailypythonprojects.substack.com/p/self-care-reminder-generator
  6.  
  7. Write a program that gently suggests self-care activities for the day. The program randomly selects an activity from a predefined list of calming, relaxing actions to promote mental well-being.
  8. """
  9. import random
  10.  
  11. self_care_activities = [
  12.     "Take a short walk in nature. 🌿",
  13.     "Drink a big glass of water. πŸ’§",
  14.     "Do some deep breathing for 5 minutes. πŸ§˜β€β™‚οΈ",
  15.     "Listen to your favorite music. 🎡",
  16.     "Write down three things you're grateful for. ✨",
  17.     "Read a chapter from a book you love. πŸ“š",
  18.     "Stretch your body gently. πŸ€Έβ€β™€οΈ",
  19.     "Spend a few minutes with a pet or a loved one. 🐾",
  20.     "Watch the sunset or sunrise. πŸŒ…"
  21. ]
  22. today_activity = random.choice(self_care_activities)
  23. print (f"Hello! Here's your self-care suggestion for today:\nβ™₯ {today_activity} β™₯")
Tags: python
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement