Numbering by recursive

def N(p,d=id(0)%3):print p;[N("   %s."%p+n,d-1)for n in"123"if d]
map(N,"123")

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

download

return to the top page