Hi,
I would like to know how to reinicializate a generator. I mean, if I for example have:
generador = (n for n in range(1,10000) if (is_prime(n) & is_prime(n+2)))
And then i run generador.next() for example twice. How can i reainicializate this generator so that when i run generador.next() again i get the first element?
If it is possible, i would thank you a lot if you can link the documentation file with the info, because i have searching for it so long and I didn't find anything.
Thanks ;)
P.D. Maybe my english is not good enought and i misspelled some words. Sorry about that.