asyncio tidur
#will sleep the current corutien for set numner of seconds
import asyncio
await asyncio.sleep(1)
_creare_
#will sleep the current corutien for set numner of seconds
import asyncio
await asyncio.sleep(1)
import asyncio
await asyncio.sleep(1)
import time
start = time.time()
print("sleeping...")
time.sleep(0.5)
print("woke up...")
elapsed_time = time.time() - start
print("elapsed time:", elapsed_time * 1000, "milliseconds")