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

48 generator in python

9 Data types questions

14 List comprehensions in python