w3resource

Python: Print a string five times, delay three seconds

Python Datetime: Exercise-25 with Solution

Write a Python program to print a string five times, with a delay of three seconds.

Sample Solution:

Python Code:

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
	

Sample Output:

w3resource will print five  times, delay for three seconds.          
w3resource                                                           
w3resource                                                           
w3resource                                                           
w3resource                                                           
w3resource 

Flowchart:

Flowchart:

Flowchart: Display the various Date Time formats

Python Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Python program to count the number of Monday of the 1st day of the month from 2015 to 2016.
Next: Write a Python program calculates the date six months from the current date using the datetime module.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.