Anderson Pozo

Generation

generate functionSun, 30 Jul 2023

Hacer un programa para ingresar un número de mes y listar por pantalla a que bimestre corresponde ese mes. Tener en cuenta esta lista. Mes 1 y 2. Bimestre 1. Mes 3 y 4. Bimestre 2. Mes 5 y 6. Bimestre 3. Mes 7 y 8. Bimestre 4. Mes 9 y 10. Bimestre 5. Mes 11 y 12. Bimestre 6.

def bimestre(month): if month in [1, 2]: return 1 elif month in [3, 4]: return 2 elif month in [5, 6]: return 3 elif month in [7, 8]: return 4 elif month in [9, 10]: return 5 elif month in [11, 12]: return 6 return 0 bimestre(5)

Questions about programming?Chat with your personal AI assistant