#Aparece este error al ejecutarlo: while pos<len(lista) and not encontrado:
TypeError: object of type 'NoneType' has no len()
#Generar lista aleatoria
def genera_lista():
largolista=random.randint(10,21)
lista=[random.randint(0, 9999)] #este es lista[0]
i=1
while i<largolista:
x=random.randint(0,9999)
if x not in lista:
lista.append(x)
i+=1
print(lista)
def sec(lista,item):
pos=0
encontrado=False
while pos<len(lista) and not encontrado:
if lista[pos]==item:
encontrado=True
else:
pos=pos+1
if encontrado==True:
print("Número",n, "encontrado en ",lista)
else:
print("Número",n, "NO encontrado en ",lista)
n=random.randint(0,9999)
print(n)
prueba=genera_lista()
if __name__ == "__main__":
sec(prueba,n)