ICT Ezy <ict...@gmail.com>:

> how to work await x Await expression operator? 
> pl explain any one ...

A coroutine can't be called directly. A call to a coroutine must be
prefixed with the "async" keyword. That allows Python to perform a
context switch between coroutines in case the coroutine needs to wait
for the operation to complete.


Marko
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to