I have a program that uses a loop, the thing is though, how can a make that loop repeat only a given amount of times? Code example below.
while True:
print "This should be reprinted only ten times"
How can I make this code repeat itself only ten, or any given amount of times?