Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def cliente(informacion:dict):
- id_cliente = informacion["id_cliente"]
- nombre = informacion["nombre"]
- edad = informacion["edad"]
- Primer_ingreso = informacion["primer_ingreso"]
- total_boleta = 0
- apto = True
- atraccion = ""
- if edad >18:
- atraccion = "X-Treme"
- apto = True
- valor_boleta = 20000
- if Primer_ingreso == True:
- total_boleta = valor_boleta * 0.95
- else:
- total_boleta = 20000
- elif edad >=15 and edad <=18:
- atraccion = "Carros chocones"
- apto = True
- valor_boleta = 5000
- if Primer_ingreso == True:
- total_boleta = valor_boleta * 0.93
- else:
- total_boleta = 5000
- elif edad >=7 and edad <15:
- atraccion = "Sillas voladoras"
- apto = True
- valor_boleta = 10000
- if Primer_ingreso == True:
- total_boleta = valor_boleta * 0.95
- else:
- total_boleta = 10000
- else:
- valor_boleta = 0
- atraccion = "N/A"
- apto = False
- total_boleta = "N/A"
- salida = {"nombre":informacion["nombre"],"edad":informacion["edad"],"atraccion":atraccion,"apto":apto,"primer_ingreso":informacion["primer_ingreso"],"total_boleta":total_boleta,
- }
- return salida
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement