vanishing alphabet by mbomb007

a=range(65,91)
\x0d
def P():print"".join(map(chr,a))\x0d

while a:P();a[-1]+=32;P();a.pop()

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page