ICT Ezy <ictezy at 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