функции, чтобы они выполнялись "паралельно"?
async def hello():
while True:
await asyncio.sleep(1)
print('Hello')
async def goodbye():
while True:
await asyncio.sleep(1)
print('Goodbye')
asyncio.run()
https://docs.python.org/3/library/asyncio-task.html
Обсуждают сегодня