Untitled

 avatar
unknown
plain_text
a month ago
1.1 kB
2
Indexable
import random
import time

# List of possible New Year status messages
new_year_messages = [
    "Wishing you a New Year filled with joy, peace, and prosperity!",
    "Happy New Year! May this year bring you happiness and success.",
    "Cheers to a new year and another chance for us to get it right!",
    "New Year, New Beginnings. Let’s make it count!",
    "May the coming year bless you with love, peace, and endless joy.",
    "Here’s to a fresh start and new adventures in the New Year!",
    "Out with the old, in with the new. Happy New Year!",
    "New Year, New Dreams, New Achievements. Let’s make it happen!",
    "2024 is here! Let’s make it our best year yet. Happy New Year!",
    "May the New Year bring you more happiness than your heart can hold!"
]

# Function to display a random New Year status
def new_year_status():
    message = random.choice(new_year_messages)
    print(message)

# Show status every 2 seconds (for example purposes)
while True:
    new_year_status()
    time.sleep(2)  # Wait for 2 seconds before showing the next status
Leave a Comment