Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/data/es/tutorials/Tutorial_06_try_except.py
blob: 99e9272083c4cae8c633ed235f56ef2b2813b17f (plain)
1
2
3
4
5
6
7
8
9
def es_numero_valido(num):
    try:
        int(num)
        print "Escribio un numero"
    except:
        print "Lo siento, no escribiste un numero"

number1 = input("Escriba y le dire si es un numero: ")
es_numero_valido(number1)