Python – Generator
In Python Generators are a way to create an iterator. If you are unfamiliar with what an iterator is in python for the sake of this article it is an object that you can loop over in a for loop. Generators are a very quick and short way of creating simple iterators and in this … Read more