Am adaugat materialele din săpt trecute.

This commit is contained in:
2026-03-27 21:15:27 +02:00
parent 16f3a6aaed
commit 84453a6456
23 changed files with 1634 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/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)