All pastes #2045330 Raw Edit

Unnamed

public python v1 · immutable
#2045330 ·published 2011-04-12 03:13 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()