from datetime import date import time import calendar def ro_friday(): date_today=date.today() if calendar.day_name[date_today.weekday()] == 'Friday': print '\t __' print '\t/ \ _________________ ' print '\t| | / \ ' print '\t@ @ | Veo que estas |' print '\t|| || | intentando hacer |' print '\t|| || <--| un deploy en |' print '\t|\_/| | RO-Friday |' print '\t\___/ \_________________/' print '' time.sleep(10)