JochCool
✅ Confused about Asynchronous Programming
You're right, using
await
immediately after getting a task object does not make that code asynchronous. That code at the end is almost correct, but I think it should be like this:
This way, the 1 will be printed before awaiting, so it happens at the same time as the other task, making it asynchronous.54 replies