04-23-2012, 02:16 PM
could you butcher this python found on tintertubes
import string
import random
FILE = open("test.txt","a")
i = 0
while i <= 1000:
i+=1
d = [random.choice(string.letters) for x in xrange(8)]
s = "".join(d)
writing= s.lower()+"\n"
FILE.write(writing)
FILE.close()
import string
import random
FILE = open("test.txt","a")
i = 0
while i <= 1000:
i+=1
d = [random.choice(string.letters) for x in xrange(8)]
s = "".join(d)
writing= s.lower()+"\n"
FILE.write(writing)
FILE.close()