Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import math
- def calcular_aportes(codigo_asociado:int, ingreso_mensual:float,
- num_anhos:int)-> dict:
- smlv = 908526
- num_sal = ingreso_mensual/smlv
- porcentaje_cooperativa = 0
- porcentaje_recreacion = 0
- #Aportes cooperativa
- if num_sal <= 2:
- porcentaje_cooperativa = 0.01
- elif num_sal > 2 and num_sal <= 6:
- porcentaje_cooperativa = 0.02
- else:
- porcentaje_cooperativa = 0.025
- #Aportes de recreación
- if num_anhos <= 5:
- porcentaje_recreacion = 0.0025
- else:
- porcentaje_recreacion = 0.003
- cuota_cooperativa = math.ceil(ingreso_mensual*porcentaje_cooperativa)
- cuota_recreacion = math.ceil(ingreso_mensual*porcentaje_recreacion)
- return {"codigo-asociado":codigo_asociado,
- "aporte-cooperativa":cuota_cooperativa,
- "aporte-recreacion": cuota_recreacion,
- "total-aportes":cuota_cooperativa+cuota_recreacion}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement