0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

python async 実行記録

Last updated at Posted at 2022-01-25
import asyncio
import time


async def say_after(delay, what):
    print(f"{time.strftime('%X')} :{what}")
    await asyncio.sleep(delay)
    print(f"{time.strftime('%X')} :{what}")


async def main():
    tasks = [say_after(3, 'hello'), say_after(2, 'yeeeei'), say_after(1, 'ueeeeei')]
    await asyncio.gather(*tasks)

asyncio.run(main())
16:38:20 :hello
16:38:20 :yeeeei
16:38:20 :ueeeeei
16:38:21 :ueeeeei
16:38:22 :yeeeei
16:38:23 :hello
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?