
November 21st, 2002, 07:18 PM
|
|
Contributing User
|
|
Join Date: Mar 2002
Posts: 89
Time spent in forums: 8 h 48 m 50 sec
Reputation Power: 12
|
|
what exactly do you mean by four loop? do you want to loop something four time? or are you talking about a For loop?
if you want to loop something four times, you can do it several ways, including this:
Code:
for x in range(4):
print "hello"
that will print "hello" 4 times
if you want to know how to use the For loop, you can look at the above example and figure it out.
|