-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathFelizAnioNuevo2024
More file actions
22 lines (18 loc) · 865 Bytes
/
FelizAnioNuevo2024
File metadata and controls
22 lines (18 loc) · 865 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import time
def mensaje_epico():
print("****************************************************")
print("* *")
print("* ¡Feliz Año Nuevo! by Anyel EC *")
print("* Que este año esté lleno de alegría y éxitos. *")
print("* Que cada día sea una nueva aventura. *")
print("* ¡Que todos tus sueños se hagan realidad! *")
print("* Que la felicidad te acompañe siempre. *")
print("* ¡Que tengas un año épico y lleno de logros! *")
print("* *")
print("****************************************************")
def cuenta_regresiva():
for i in range(10, 0, -1):
print(f"¡Cuenta regresiva: {i}!")
time.sleep(1)
cuenta_regresiva()
mensaje_epico()