<pre>for variable_name in list:
# do looping behavior</pre>
<p> </p>
<p>A for loop assigns a value to variable_name each time it <em>iterates</em>. An iteration is one pass through the loop. This for loop will iterate once for each element in list.</p>