var = 10
while var > 0 :
    var = var - 1
    if var == 5 :
        continue
    print("\n Current Variable Value :", var)
print("\n Good Bye!")

Embed on website

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