Files
exercitii/python/extra/bday_messages.py
T

18 lines
463 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Sat Mar 21 18:28:22 2026
@author: alex
"""
import random
import pandas
bday_messages = ['Hope you have a very Happy Birthday! 🎈',
'It\'s your special day get out there and celebrate! 🎉',
'You were born and the world got better everybody wins! 🥳',
'Have lots of fun on your special day! 🎂',
'Another year of you going around the sun! 🌞'
]
bday_m = random.choice(bday_messages)