Numbering by hallvabo

def f(n,p=''):i=1;exec'print p+`i`;f(n-1,"   "+p+"%d."%i);i+=1;'*3*(n>0)
f(input())

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

download

return to the top page