asyncio.sleep() method
I have seen that some programs use asyncio.sleep() method. It seems that it does the same as the time.sleep() method - waits for the specified number of seconds. Then what are the difference between them and why asyncio.sleep() can be needed if there is already time.sleep() functions?