for i in range(2,9):
    for j in range(1,9):
        if j % 3 == 0:
            continue
        else:
            print(f"{i} X {j} = {i*j}")

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: