Reversed 8bit numbers by z423x5c6

for i in range(256):
 a=bin(i)[:1:-1]
 print(int(a,2)*2**(8-len(a)))

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

download

return to the top page