###DATA ANALISYS print '/'*3,"OPEN TXT FILE" try: # use a text file you have, or google for this one ... filename = 'test.txt' textf = open(filename, 'r') except IOError: import sys #info from http://docs.python.org/lib/module-sys.html sys.exit('Cannot open file %s for reading' % filename) l= [] w=[] c=[] for line in textf: l.append(line) for word in line.split(): w.append(word) for char in range(len(word)): c.append(word[char]) #print w ###VISUALIZATION width=400.0 height=400.0 size(width,height) text(choice(w),random(width),random(height)) print "///"