All pastes #2045331 Raw Edit

python

public python v1 · immutable
#2045331 ·published 2011-04-12 03:14 UTC
rendered paste body
from datetime import date, datetimeclass Ej:  def __init__(self):    now = datetime.now()    self.fecha = date(now.year, now.month, now.day)    print "Para su cumple:"    dia = input("Ingrese el dia")    mes = input("Ingrese el mes")    self.fecha_cumple = date(now.year, mes, dia)  def diasHastaMiCumple(self):    dif = self.fecha-self.fecha_cumple    return dif.daysinst = Ej()print ("Faltan %s dias para tu cumpleaños" % inst.diasHastaMiCumple() )