Mal nichts so exotisches, was ich gerade lerne:
Code:
import datetime

def gb():
    today = datetime.date.today()
    if (today.isoformat()[5:] == '08-26'):
        print 'Alles Gute zum Geburtstag, DFYX! :D'
    else:
        print 'Pfff...<__<'

gb()