for i in range(1,6):
for j in range(1,6):
print(i*j,end ='\t')
print(' ')
#creates a 5x5 table
I've created a 5x5 multiplication square table but I don't know how to adapt this so that when an even number is found, 0 is printed within the table. I understand that the remainder of and i and j must be zero in order for it to be even.