jueves, 25 de octubre de 2012

oddTuples, listas o vectores en phyton


def oddTuples(aTup):
    '''
    aTup: a tuple
   
    returns: tuple, every other element of aTup.
    '''
    x=0
    ini =()
    if aTup==():
        return ()
    else:
        for x in range(0,len(aTup),+2):
            ini+=(aTup[x],)
           
    return ini

No hay comentarios:

Publicar un comentario