I do not know what I'm wrong about, I have the concept but it confuses me a bit
def eliminarEnLista(L):
n=int(raw_input("Ingrese el numero que desea eliminar de la lista: "))
L=[]
i=0
while i <len(L):
for cont in L[i]:
if cont <=L[i]:
continue
if cont==n and cont==L[i]:
L.remove(i)
else:
pass
i+=1
return L
I do not print anything on the screen after calling this function and I would like to know what my problem is u_u