vanishing alphabet by PhilTheFish (hpi)

s="ABCDEFGHIJKLMNOPQRSTUVWXYZ"
while s:print s;s=s[:-1]+chr(ord(s[-1])+32);print s;s=s[:-1]

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

download

return to the top page