Repeated Number by recursive

print"\n".join(d*r for r in range(2,9)for d in"123456789")

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

download

return to the top page