Hexdraw by clock

n=int(raw_input(),16);s=""
while n:s=" .#\n"[n%4]+s;n/=4
print s

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

download

return to the top page