Untitled

 avatar
unknown
plain_text
a year ago
506 B
5
Indexable
def birthday_wish(name, age):
    message = f"Happy {age}th Birthday, {name}! 🎉🎂"
    message += "\nMay your day be filled with love, laughter, and wonderful memories."
    message += "\nWishing you success and happiness in the coming year. Cheers to another fantastic journey around the sun!"
    return message

# Replace "Alice" and 25 with the actual name and age
recipient_name = "Alice"
recipient_age = 25
birthday_message = birthday_wish(recipient_name, recipient_age)
print(birthday_message)
Editor is loading...
Leave a Comment