1# how to use any module in python
2# first instal what module you want to use in vscode
3# my time is alredy installed there for we get an error
4# moving to next is how to use
5import time
6for i in range (3):
7 print("Whait wor 3 sec...")
8 time.sleep(3)
9
10 print(i + 1)
11# every module are used in their own manner
12# you can search like python (module) package
13# eg = python time package
14# and you will khow how to use it
15# as you have seen that it weight for 3 second
16# thank you for wathing
17# good bye
18# have a nice day
19# Do your programsin vscode it would be more easy