I'm learning Python, more specially parallel programming using Python Parallel Programming Cookbook by Giancarlo Zaccone.
At the time the book was published async/await was still in the beta version of Python, and so, the book doesn't cover it. It covers Asyncio. Now with the release of Python 3.5, async/await has been implemented in Python.
What are the differences between Asyncio.wait() and async/await? Is it just a syntax difference?