You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
170 B
Python

import time
x=0
print("\nw3resource will print five times, delay for three seconds.")
while x<5:
print("w3resource")
time.sleep(3)
x=x+1