Python/九九

Python
for x in range(0,9):
for y in range(0,9):
print('{0}'.format('%3d ' % ((x+1) * (y+1))), end="")
print('')