gayuna
1 day ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
docs/ko/docs/async.md
|
|
@ -299,7 +299,7 @@ def get_sequential_burgers(number: int): |
|
|
|
|
|
|
|
`async def`를 사용하면, 파이썬은 해당 함수 내에서 `await` 표현에 주의해야한다는 사실과, 해당 함수의 실행을 "일시정지"⏸하고 다시 돌아오기 전까지 다른 작업을 수행🔀할 수 있다는 것을 알게됩니다. |
|
|
|
|
|
|
|
`async def`f 함수를 호출하고자 할 때, "대기"해야합니다. 따라서, 아래는 동작하지 않습니다. |
|
|
|
`async def` 함수를 호출하고자 할 때, "대기"해야합니다. 따라서, 아래는 동작하지 않습니다. |
|
|
|
|
|
|
|
```Python |
|
|
|
# This won't work, because get_burgers was defined with: async def |
|
|
|