# Program to print the number "x" on screen, 10 times in Python

for x in range(1,11):
    print(x) # prints the number "x" on screen 10 times
    # such as:
    # 1
    # 2
    # 3
    # ...
else:
    print("\nDone!")

Embed on website

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