@trumpsear_tg · Post #2016 · 16.01.2026 г., 14:02
The leader of the Venezuelan opposition presented Trump with her Nobel Peace Prize. #venezuelan#opposition#nobel 👂More on Trump's Ear ⚠️
Hashtags
TGINSIGHT SIMILAR POSTS
Изворен канал @pythonotes · Post #401 · 15 дек.
Функция asyncio.wait() это еще один способ вызвать множество асинхронных задач. Она работает в нескольких режимах. 1. Самый простой - ждем завершения всех задач async def main(): tasks = [asyncio.create_task(do_it(i)) for i in range(10)] done, pending = await asyncio.wait( tasks, return_when=asyncio.ALL_COMPLETED ) for task in done: try: print(task.result()) except Exception as e: print(e) Очень похоже на gather, но работает не так. ▫️возвращает не результаты, а два сета с объектами Task у которых можно забрать результат через task.result() если они в списке done ▫️не гарантирует порядок результатов так как оба объекта это set ▫️не выбрасывает исключение когда оно появляется, а сохраняет его в Task. Исключение появится когда попробуете забрать резултьтат. 2. Ждем завершения первой задачи, даже если там ошибка. async def main(): tasks = [asyncio.create_task(do_it(i)) for i in range(3)] done, pending = await asyncio.wait( tasks, return_when=asyncio.FIRST_COMPLETED ) # в done может быть несколько задач! for task in done: try: print(task.result()) except Exception as e: print(f"Fail: {e}") # Оставшиеся задачи в pending, как правило, нужно отменить, иначе они будут продолжать работать for task in pending: task.cancel() В сете done будут таски которые успели завершится, причем как успешно так и нет. 3. До первой ошибки. Тоже самое, но с аргументом FIRST_EXCEPTION done, pending = await asyncio.wait( tasks, return_when=asyncio.FIRST_EXCEPTION ) Функция завершается как только первая задача упадет с ошибкой. Учтите, что в любом случае done вы можете обранужить несколько задач, как с ошибками так и успешные. ↗️ Полный листинг примеров здесь #async
Hashtags
Пребарај: #venezuelan
@trumpsear_tg · Post #2016 · 16.01.2026 г., 14:02
The leader of the Venezuelan opposition presented Trump with her Nobel Peace Prize. #venezuelan#opposition#nobel 👂More on Trump's Ear ⚠️
Hashtags
@addisstandardeng · Post #21033 · 10.01.2026 г., 09:15
#Pope_Leo says ‘war is back in vogue’ in major address to global envoys Pope Leo XIV has said the prohibition on countries violating one another’s borders has been “completely undermined,” in an important speech to diplomats gathered in the #Vatican. The first #United_States-born pope, giving his debut “state of the world” address, expressed his concern about “escalating tensions” in the “#Caribbean Sea and the #American Pacific coast” while calling for the “will of the #Venezuelan people” to be respected, and a return to stability in the country. “War is back in vogue and a zeal for war is spreading,” Leo told ambassadors from across the globe gathered in the Vatican’s Apostolic Palace on Friday. “The principle established after the Second World War, which prohibited nations from using force to violate the borders of others, has been completely undermined.” Leo was speaking just less than a week after the...... https://edition.cnn.com/2026/01/09/europe/pope-leo-state-of-world-address-envoys-intl