For Loops

There are basically 2 ways to formulate for loops in Python.

There is a for loop that deals with each element of data one by one in succession,
with no exception with no integer involvement, and there is a for loop that deal with integers.

If you just want to print out all of the elements of this list on separate lines,
The following code would do the job.

The for loop can include the in range keyword,
This is shown below:

Other uses for 'For loop'