Multiplication Table by croyal

for i in range(1,13):
 r=''
 for j in range(1,13):r+= j==1 and str(i*j).rjust(3) or str(i*j).rjust(4)
 print r

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

download

return to the top page