Reversed 8bit numbers by mitchs

n=256
exec('print(int(bin(n)[:2:-1],2));n+=1;'*n)

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

download

return to the top page