How would I make a multiplication table that\'s organized into a neat table? My current code is:
n=int(input(\'Please enter a positive integer between 1 and 15:
For this print as following
print "%d X %d"%(row, col)
It will print as 2 X 3.