Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/data/es/tutorials/Tutorial_02_while.py
blob: 933459e25e71f8cb62eba185347b9aa00c7c6546 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import time

def while_cuenta_regresiva(numero):
    while(numero > -1):
        print  str(numero) + " para la explosion!!!"
        time.sleep(1)
        numero = numero -1

numero = input('Escribe un numero: ')
print "Cuenta regresiva usando sentencia while!!"
while_cuenta_regresiva(numero)
print "Kaboooommm!!!, X_X"