20 Time module in python

 


import time


print(' \n Before sleep ', time.ctime())

time.sleep(10)

print(' \n After sleep  ', time.ctime())


Comments

Popular posts from this blog

39 abstract method in python

10 Interview question on python

4 Tuple data types