Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import asyncio
- async def saluta(nome):
- print(f"Ciao, {nome}!")
- await asyncio.sleep(1)
- print(f"Arrivederci, {nome}!")
- async def main():
- await asyncio.gather(
- saluta("Dee"),
- saluta("Kiki"),
- saluta("Bolla")
- )
- asyncio.run(main())
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement