Both of these functions basically has the same purpose, but a little different. Time.sleep() makes the first call wait for an amount of seconds, but will block other calls which won't be able to async.  On the other hand, asyncio.sleep() does the same thing, but allows other calls to run at the same time as the first call which will not block anything.