18 lines
463 B
Python
18 lines
463 B
Python
#!/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)
|