Wap to print tables 1 to 10

for i in range(1,11):
for j in range(1,11):
print(i*j," ",end=’ ')
print()

2 Likes

Well done, just try to print it in the exact format I asked. rest everything is good. code is correct

1 Like