반응형
import asyncio
import time
async def say_after(delay, what):
await asyncio.sleep(delay)
print(what)
async def main():
print(f"started at {time.strftime('%X')}")
await say_after(1, 'hello')
await say_after(2, 'world')
print(f"finished at {time.strftime('%X')}")
asyncio.run(main())
started at 17:13:52
hello
world
finished at 17:13:55
아래 글에 코루틴과 테스크를 비교분석해둔 글도 존재한다.
https://kdw9502.tistory.com/6?category=779910
반응형
'Basic > Python' 카테고리의 다른 글
[Python] 1시간 뒤의 timestamp를 얻는 방법 (0) | 2023.02.15 |
---|---|
ChatGPT API를 이용한 질의응답하기 (0) | 2023.02.11 |
Python에서 파일 존재여부 확인 방법 (0) | 2022.04.11 |
paramiko를 이용한 리눅스 sftp 다운로드 방법 (0) | 2022.04.08 |
[openpyxl] 11. 파이썬을 이용한 엑셀 기타 정리본 (0) | 2021.10.30 |