necesito ayuda que alguien sepa sobre programacion con phyton en un ide eclipse
Archivo adjunto 1019
Versión para imprimir
necesito ayuda que alguien sepa sobre programacion con phyton en un ide eclipse
Archivo adjunto 1019
cualquier ayuda es bienvenida
def menu ():
print "MENU PRINCIPAL";
print "==============";
print "1. Registrar";
print "2. Buscar por codigo de alumno";
print "3. listar datos del alumno en orden alfabetico";
print "4. Listar datos del alumnos en orden de merito";
print "5. Listar alumnos aprobados";
print "6. Listar alumnos desaprobados";
print "7. Modificar"
print "8. Eliminar"
print "9. Salir"
alt = input("Elija opcion [1..9]:");
return alt;
def registrar():
nom = input("ingrese nombres");
cod = raw_input ("ingrese codigo");
notaex = raw_input("nota de exmamen")
notatll =raw_input("nota de tabajo")
notalab =raw_input("nota de laboratorio")
notaact = raw_input ("nota actitudinal")
promedio = (2*notaex+notatll+notalab+notaact)/5;
def buscar():
pose=-1;
buscarn =raw_input("buscar nombre:");
for dato in range (0,len(lista),1):
if(lista[dato]==buscarn):
pose=dato;
break;
return pose;
def listar():
for x in range(0,len(lista),1):
print lista[x];
def modificar(pose):
qu = raw_input("quieres modificarlo a(S/N):"+lista[pose]);
if (qu == "S"):
dato=raw_input("ingrese nuevo valor:");
lista[pose]=dato;
def eliminar(pose):
qu = raw_input("quieres eliminarlo a(S/N):"+lista[pose]);
if (qu == "S"):
lista.pop(pose);
opc=1;
lista=[];
while (opc!=9):
opc = menu();
if (opc==1):
registrar();
nom = input("ingrese nombres");
cod = raw_input ("ingrese codigo");
notaex = raw_input("nota de exmamen")
notatll =raw_input("nota de tabajo")
notalab =raw_input("nota de laboratorio")
notaact = raw_input ("nota actitudinal")
promedio = (2*notaex+notatll+notalab+notaact)/5;
ayuda