Loops
http://www.geeksforgeeks.org/any-all-in-python
http://treyhunner.com/2016/04/how-to-loop-with-indexes-in-python
https://www.youtube.com/watch?v=Qgevy75co8c
The fastest way to loop in python is don't loop
- While loop
- For loop
- in-built functions like sum(range(100))
- numpy functions
- Mathematics with single operation i.e. no loop
Any and All are two built ins provided in python used for successive And/Or.