For Loop

--Originally published at Python3

The for loop is the third loop we learned in python. It works best if you know how many times the loop will run before you run it. You may have noticed I used it in my Fibonacci sequence recursion program; it worked there because I stated how many times I wanted the loop to run beforehand. The for loop needs a variable and a sequence that it will use to execute the loop. For more info on the for loop, visit http://www.python-course.eu/python3_for_loop.phpfor