Generation

generate functionSun, 16 Apr 2023

una funcion para taquilla

def taquilla(cantidad, paquete): if paquete == 'Adulto': return cantidad * 14 elif paquete == 'Infante': return cantidad * 8 elif paquete == 'Tercera Edad': return cantidad * 12 else: return "No existe ese paquete" taquilla(3, 'Tercera Edad')

Want to kickstart your project?Use the new AI Studio to create your code