-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6417 from jelambrar96/jelambrar96_reto_27_python
Reto #27 - Python
- Loading branch information
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
37 changes: 37 additions & 0 deletions
37
Retos/Reto #27 - CUENTA ATRÁS [Media]/python/jelambrar96.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
#!/usr/bin/python3 | ||
|
||
""" | ||
# Reto #27: Cuenta atrás | ||
/* | ||
* Crea una función que reciba dos parámetros para crear una cuenta atrás. | ||
* - El primero, representa el número en el que comienza la cuenta. | ||
* - El segundo, los segundos que tienen que transcurrir entre cada cuenta. | ||
* - Sólo se aceptan números enteros positivos. | ||
* - El programa finaliza al llegar a cero. | ||
* - Debes imprimir cada número de la cuenta atrás. | ||
*/ | ||
""" | ||
|
||
__author__ = "Jorge Lambraño - jelambrar96" | ||
__copyright__ = "Copyright 2024, retos-programacion-2023" | ||
__credits__ = ["Brais Moure - mouredev"] | ||
__license__ = "GPL" | ||
__version__ = "1.0.1" | ||
__maintainer__ = "Jorge Lambraño" | ||
__email__ = "[email protected]" | ||
__status__ = "Production" | ||
|
||
from time import sleep | ||
|
||
def cuenta_atras(numero: int, delay: int): | ||
assert numero >= 0 and delay >= 0, "Error: MUST BE numero >= 0 and delay >= 0" | ||
# print(numero, end='\r') | ||
for i in range(numero, -1, -1): | ||
print(i, end='\r') | ||
sleep(delay) | ||
print("", end="") | ||
|
||
|
||
if __name__ == '__main__': | ||
cuenta_atras(5, 1) | ||
|