7 lines
170 B
Python
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
|