From b6ece4af3dae90504e1d4460dd641a2f0faade0e Mon Sep 17 00:00:00 2001 From: neslarra <31991788+neslarra@users.noreply.github.com> Date: Sat, 28 Dec 2024 18:15:24 -0300 Subject: [PATCH] Reto# 50 - python --- .../python/neslarra.py" | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git "a/Roadmap/50 - PLANIFICADOR DE OBJETIVOS DE A\303\221O NUEVO/python/neslarra.py" "b/Roadmap/50 - PLANIFICADOR DE OBJETIVOS DE A\303\221O NUEVO/python/neslarra.py" index 415b1ac854..4c693e9ba8 100644 --- "a/Roadmap/50 - PLANIFICADOR DE OBJETIVOS DE A\303\221O NUEVO/python/neslarra.py" +++ "b/Roadmap/50 - PLANIFICADOR DE OBJETIVOS DE A\303\221O NUEVO/python/neslarra.py" @@ -88,7 +88,7 @@ def show_monthy_targets(self): 7: "Julio", 8: "Agosto", 9: "Septiembre", 10: "Octubre", 11: "Noviembre", 12: "Diciembre"} print("\nObjetivos para este año ----------------") for target in self.target_list: - print(f"\tObjetivo: {target.get_target()}: {target.get_amount()} {target.get_target_unit()} por mes durante {target.get_period()} meses") + print(f"\tObjetivo: {target.get_target()}: {target.get_amount()} {target.get_target_unit()} durante {target.get_period()} meses") for month in range(1, 13): print(f"\nObjetivos {months[month]}\n{'#' * 30}") for target in self.target_list: @@ -107,13 +107,12 @@ def show_monthy_targets(self): objetivo1 = Target("Leer", "libros", 7, 12) objetivo2 = Target("Ver", "videos", 12, 12) -objetivo3 = Target("Escribir", "Artículos", 17, 8) +objetivo3 = Target("Escribir", "Artículos", 17, 9) gestor = TargetManager(Target.target_list) gestor.show_monthy_targets() -# Agrego un objcetivo nuevo -objetivo4 = Target("Practicar", "Tenis", 24, 6) +objetivo4 = Target("Tomar", "Clases de tenis", 24, 6) gestor.show_monthy_targets()