TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

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

Резултати

Пронајдени 41 слични објави

Пребарај: #blackandwhite

当前筛选 #blackandwhite清除筛选
Press TV Shows

@PresstvPrograms · Post #4911 · 06.09.2025 г., 15:06

🔺“Yemen does not kneel. It responds.” Yemen shows steadfast solidarity with Palestine, proving through sacrifice and resistance what true commitment to justice means. Watch in full #BlackAndWhite @PresstvPrograms

Press TV Shows

@PresstvPrograms · Post #4907 · 05.09.2025 г., 06:01

🔺Nicola Hadwa argues that Israel faces collapse in population, economy, and legitimacy, while Palestinian resistance grows stronger. Watch in full #BlackAndWhite @PresstvPrograms

Press TV Shows

@PresstvPrograms · Post #4906 · 05.09.2025 г., 05:02

🔺“Israeli regime cannot exist in peace” Nicola Hadwa states that the Palestinian resistance fights bravely against the Israeli regime over the past two years, emphasizing the regime’s failure to achieve its goals. Watch in full #BlackAndWhite @PresstvPrograms

Press TV Shows

@PresstvPrograms · Post #4905 · 05.09.2025 г., 04:00

🔺“Yemenis are fierce fighters who do not know the meaning of defeat” According to Nicola Hadwa, Saudi Arabia and the UAE are complicit in the Israeli regime's crimes against the Yemeni people. Watch in full #BlackAndWhite @PresstvPrograms

Press TV Shows

@PresstvPrograms · Post #4901 · 03.09.2025 г., 06:06

🔺”Yemen showed that Israel’s army is not invincible” Nicola Hadwa points out that Yemen has shown that the child-killing entity, Israel, is not an invincible army and is, in fact, a considerably a weaker army. Watch in full #BlackAndWhite @PresstvPrograms

Press TV Shows

@PresstvPrograms · Post #4897 · 01.09.2025 г., 18:49

🔺 Nicola Hadwa explains why Yemen’s role in supporting the Palestinians is truly impressive and remarkable. Watch in full #BlackAndWhite @PresstvPrograms

Press TV Shows

@PresstvPrograms · Post #4893 · 01.09.2025 г., 16:04

🔺"Out of every 10 words from the West, 15 are lies." Nicola Hadwa exposes Western media’s demonization of Yemen, highlighting the nation’s resilience as a symbol of anti-imperial resistance. Watch in full #BlackAndWhite @PresstvPrograms

Press TV Shows

@PresstvPrograms · Post #4889 · 01.09.2025 г., 11:55

🔺Yemen, though poor and besieged, embodies defiant solidarity, transforming its suffering into a force for resistance against oppression. Watch in full #BlackAndWhite @PresstvPrograms

Press TV Shows

@PresstvPrograms · Post #4884 · 31.08.2025 г., 16:20

🔺 Yemen does not give up From Yemen, in a show of solidarity with the Palestinian cause, ships associated with the Zionist entity and imperialism are being targeted, disrupting the transfer of goods and products that would support the Israeli regime and its trade. Watch in full #BlackAndWhite @PresstvPrograms

Press TV Shows

@PresstvPrograms · Post #4804 · 16.08.2025 г., 07:03

🔺"Cuba will not give up" Carmen Esquivel emphasizes that Cuba remains steadfast in defending its sovereignty against external challenges. Watch in full #BlackAndWhite @PresstvPrograms

Press TV Shows

@PresstvPrograms · Post #4797 · 15.08.2025 г., 07:02

🔺According to Carmen Esquivel, Cuba must strengthen ideology, media, and social unity to protect its socialist revolution. Watch in full #BlackAndWhite @PresstvPrograms

Press TV Shows

@PresstvPrograms · Post #4792 · 13.08.2025 г., 13:12

🔺Carmen Esquivel highlights the potential of BRICS partnerships to boost Cuba’s development and wealth. Watch in full #BlackAndWhite @PresstvPrograms

ПретходнаСтраница 1 од 4Следна