vanishing alphabet by mitchs (llhuii)

def P(a,s=''):s+=chr(a);a<90!=P(a+1,s)!=P(a+33,s);print(s[1:])
P(64)

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

download

return to the top page