- Home
- Course Category
- Course Result
- Course Detail
Hot Line: 08377052947
-
TeacherJyoti
-
Category
Programming, Website Development
-
Duation
15 hours
-
Reviews(117 review)
-
Call Us for Details
Basic Python Course Questions
Python programming language is a general-purpose, dynamic programming Language.Python language have a large library of packages which makes python for beginners a language of choice.
Python Programs for Beginners
In the program below, we used the sleep to delay in printing for 3 seconds
Source Code:
PRINT A STRING 5 TIMES WITH DELAY OF 3 SECONDS
# PRINT A STRING 5 TIMES WITH DELAY OF 3 SECONDS
import time
x=0
print("\nblazingminds learning centre will be printed 5 times,with a delay for 3 seconds.")
while x<5:
print("blazingminds learning centre")
time.sleep(3)
x=x+1
Output
Run the program to see the output