Advertisement
teslariu

bomba

May 8th, 2023
895
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.29 KB | None | 0 0
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3.  
  4. # script que simula una bomba
  5. import time
  6. tiempo = int(input("Ingrese el tiempo hasta detonación: "))
  7.  
  8. for t in range(tiempo,0,-1):
  9.     print(t)
  10.     time.sleep(1)
  11.  
  12. print("BOOOMMMM")
  13.  
  14. # Modificar para que bortre la pantalla entre cada cuenta
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement