for x in range(20):
    if x % 20 == 0:
        print("Twist!")
    elif x % 15 == 0:
        pass
    elif x % 5 == 0:
        print("Fizz!")
    elif x % 3 == 0:
        print("Buzz!")
    else:
        print(x)

Embed on website

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