En esta sección se aprendió el uso del for en distintos programas aumentando sus números de 4 en 4 y agregando un while.
#Programausofor1
def aumentacuatro(inicio,fin):
i=inicio
for i in range(inicio,fin,4):
print i
inicio = int(input("Ingrese el numero de inicio: "))
fin = int(input("Ingrese numero fin: "))
aumentacuatro(inicio,fin)
#Programausofor1.2
def aumentacuatro(inicio,fin):
while inicio <= fin:
print inicio
inicio= inicio+4
inicio = int(input("Ingrese el numero de inicio: "))
fin = int(input("Ingrese numero fin: "))
aumentacuatro(inicio,fin)
def notas(nota):
if nota>=0 and nota<=3:
return 'Insuficiente'
elif nota>=4 and nota <= 6:
return 'Insuficiente'
elif nota>=7 and nota<= 10:
return 'Bien'
nota= input('Ingrese la calificacion: ')
print notas(nota)