it is. But inbuilt iterators are faster than your own loops. Python generators and iterators are written inside interpreter and are much more efficient.
I tested it out. This Version for long text: 0.0077 Version with my custom loop: 0.0256
...
Loading collection data...
it is. But inbuilt iterators are faster than your own loops. Python generators and iterators are written inside interpreter and are much more efficient.
I tested it out.
This Version for long text: 0.0077
Version with my custom loop: 0.0256
...