# File: ChapterAnimation/time0.py """ uses of sleep 1203550659.58 1203550661.58 hello 1203550661.61 1203550663.61 hello 1203550663.64 1203550665.64 """ import time def main(): for i in range(3): print("hello") print(time.time()) time.sleep(2) print(time.time()) main()