Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- # hacer una funcion que simule un contador. Se debe ingresar un tiempo
- # y se debe mostrar la cuenta regresiva
- # Ej:
- # >>> Ingrese el tiempo: 3
- # >>> 3
- # >>> 2
- # >>> 1
- # >>> ¡BOOOM!
- # El tiempo se puede pedir en la funcion cuenta regresiva o pasárselo
- # como argumento
- #def cuenta_regresiva():
- # pass
- import time
- def ingresar():
- while True:
- tiempo = input("Ingrese el tiempo: ")
- if tiempo.isdecimal() and int(tiempo):
- return int(tiempo)
- else:
- print("Error: ingrese un tiempo válido")
- def cuenta_regresiva(tiempo):
- print('The Bomb has been planted')
- for i in range(tiempo, 0, -1):
- print(f"Tiempo restante: {i} segundos")
- time.sleep(1)
- print("¡BOOOM, TERRORIST WIN!")
- if __name__ == '__main__':
- tiempo = ingresar()
- cuenta_regresiva(tiempo)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement