vanishing alphabet by random

u='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
while u:print(u+'\n'+u[:-1]+u[-1].lower());u=u[:-1]

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

download

return to the top page