I want to find the last white space of the string, and them break it there. line_size is the size that the line has to be, so it varies.
if line[line_size] != ' ':
for x in reversed(range(line_size)):
print line[x]
if line [x] == ' ':
break_line = line[x]