How might I make a multiplication table that is coordinated into a perfect table? My present code is:
n=int(input('Please enter a positive integer between 1 and 15: '))
for row in range(1,n+1):
for col in range(1,n+1):
print(row*col)
print()
This effectively multiplies everything except for has it in a list structure. I realize I need to settle it and space it appropriately, however, I don't know where that goes?