File Python Tutorial

f = open('temp.txt', 'w')
for i in range(250):
    f.write('%03d)  this is a test.\n' % i)
f.close()