def aumenta4(inicio, fin):
i = inicio
for i in range(inicio, fin+1, 4):
print i
inicio = int(input("Ingresa el numero inicial: "))
fin = int(input("Ingresa el numero final: "))
aumenta4(inicio,fin)
def aumenta4(inicio, fin,incremento):
for i in range(inicio, fin, incremento):
print i
if i + incremento == fin:
print fin
inicio = int(input("Ingresa el numero inicial: "))
fin = int(input("Ingresa el numero final: "))
incremento = int(input("Ingrese la cantidad que se incrementara: "))
aumenta4(inicio,fin,incremento)
def aumenta4(inicio, fin):
while inicio <= fin:
print inicio
inicio = inicio + 4
inicio = int(input("Ingresa el numero inicial: "))
fin = int(input("Ingresa el numero final: "))
aumenta4(inicio,fin)
def sacarparimpar(numeroin, numerofin):
while numeroin <= numerofin:
residuo = numeroin % 2
if residuo != 0:
print "Este numero es IMPAR: .........", numeroin
else:
print "Este numero es PAR: .........", numeroin
numeroin = numeroin+1
numeroin = int(input('Dame el numero inicial: '))
numerofin = int(input('Dame el numero final: '))
sacarparimpar(numeroin, numerofin)
Comentarios
Publicar un comentario