I would like to print multiple tables,
following is the line which am using to print,
print ("%d\t*\t%d\t=\t%2d"%(multiplicand,i,result))
How to specify or pass the values such as two from a variable.
I tried something like this
max_len = len(maxresult)
print ("%d\t*\t%d\t=\t%" +max_len+"d"%(multiplicand,i,result))
but it didn't work.