반응형 coroutine1 Python async/await Python에서 async/await를 사용하면 비동기 코드를 동기 코드처럼 간단히 작성할 수 있습니다. async/await는 Python 3.5 버전부터 지원하는 기능으로, asyncio 모듈을 기반으로 동작합니다. 기본 사용법은 다음과 같습니다: import asyncio async def main(): print('hello') await asyncio.sleep(1) print('world') asyncio.run(main()) - async def로 비동기 함수를 정의합니다. - await를 사용하여 비동기 함수 안에서 다른 비동기 함수를 호출할 수 있습니다. - asyncio.run으로 비동기 함수를 실행합니다. 이렇게 하면 hello를 출력하고 1초 기다린 후 world가 출력되는 비동기 .. 2024. 1. 26. 이전 1 다음 728x90 반응형