import random,sys X=list(open(__file__).read()) Y=X[:] while any(x==y for x,y in zip(X,Y)):random.shuffle(Y) sys.stdout.write("".join(Y))
Note that non-ascii characters in the above source code will be escaped (such as \x9f).
download
return to the top page