<html><head><style type="text/css"><!-- DIV {margin:0px;} --></style></head><body><div style="font-family:times new roman,new york,times,serif;font-size:12pt"><div>In the Python language, or any other language for that matter, I have 
never understood why they don't have a loop function. Here's what I 
mean, every time someone wants something to repeat itself, they have to 
write a while loop like this:<br>
<br>
x = 0<br>
while x &lt; 10:<br>
&nbsp;&nbsp;&nbsp; function()<br>
&nbsp;&nbsp;&nbsp; x = x + 1<br>
<br>
When, instead of writing all of that, you could do something similar to 
this:<br>
<br>
function().10<br>
<br>
Where you can just type in the number 10 right next to it. It makes no 
since.</div>
</div><br>

      </body></html>