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

Резултати

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

Пребарај: #uae

当前筛选 #uae清除筛选
Ultimora.net - POLITICS

@ultimoraPOLITICS · Post #39339 · 13.05.2022 г., 13:56

#UAE Il Presidente degli Emirati Arabi Uniti Khalifa bin Zayed Al Nahyan è morto oggi all'età di 73 anni. In carica dal 2004, Khalifa è morto dopo una lunga lotta contro una malattia grave. La Presidenza del Consiglio ha annunciato che osserveranno 40 giorni…

Hashtags

Ultimora.net - POLITICS

@ultimoraPOLITICS · Post #39338 · 13.05.2022 г., 13:47

#UAE Il Presidente degli Emirati Arabi Uniti Khalifa bin Zayed Al Nahyan è morto oggi all'età di 73 anni. In carica dal 2004, Khalifa è morto dopo una lunga lotta contro una malattia grave. La Presidenza del Consiglio ha annunciato che osserveranno 40 giorni di lutto. @UltimoraPolitics

Hashtags

Islamic World News

@iswnews_en · Post #17760 · 27.03.2026 г., 14:15

🇦🇪🌪After Iran now the mother nature is pounding the UAE! The earth too abhors those whose hands, alongside Israel, are stained with the blood of children. #UAE

Hashtags

International Geographic

@internationalgeographic · Post #5730 · 09.06.2025 г., 06:23

Al Ain, #UAE🇦🇪 The oasis city of Al Ain is the fourth largest city in the country and the only major city located far from the sea. In fact, the Emirates began with him. Al Ain is known primarily for the fact that the Sheikh Zayed was born and lived here, thanks to whom the Emirates began to actively develop. In addition, it is here that most of the country's indigenous people live. You can travel to Al Ain from Abu Dhabi and Dubai either on your own or with an excursion.

Hashtags

POPULAR FRONT

@popularxfront · Post #5399 · 13.03.2026 г., 10:51

🇦🇪#UAE: Explosions were reported in Dubai's business district. Footage shows a large cloud of smoke rising from the central area of the financial hub. Some reports mention that one of the buildings was struck after UAE air defence shot down several Iranian drones. (📹 via AFP & @MofaYasir on X)

Hashtags

Dan Kovalik

@danielmkovalik · Post #3036 · 29.11.2025 г., 19:05

The United Arab Emirates Use a Black Sport to Whitewash a Genocide in Africa #UAE @NBA @ESPN https://www.blackagendareport.com/united-arab-emirates-use-black-sport-whitewash-genocide-africa

Hashtags

uzsd.uz channel

@uzsduz · Post #2211 · 03.08.2022 г., 06:06

#UAE Часть 5 Путешествие по ОАЭ Дубайская рамка *** 5-qism BAA bo‘yicha sayohat Dubay ramkasi 👇Подписаться на канал👇 https://t.me/uzsduz

Hashtags

uzsd.uz channel

@uzsduz · Post #2209 · 01.08.2022 г., 08:21

#UAE Часть 4 Путешествие по ОАЭ *** 4-qism BAA bo‘yicha sayohat https://m.facebook.com/story.php?story_fbid=pfbid0PFCU8JbuaHioaFBNPGuyX1riG4D6wSkSfbg6mMcAgdmqZtnSZDQY65rwTVBDFu7Rl&id=100000049131167 👇Подписаться на канал👇 https://t.me/uzsduz

Hashtags

uzsd.uz channel

@uzsduz · Post #2196 · 31.07.2022 г., 17:23

#UAE Часть 3 Путешествие по ОАЭ *** 3-qism BAA bo‘yicha sayohat 👇Подписаться на канал👇 https://t.me/uzsduz

Hashtags

uzsd.uz channel

@uzsduz · Post #2195 · 30.07.2022 г., 08:45

#UAE Часть 2 Путешествие по ОАЭ *** 2-qism BAA bo‘yicha sayohat 👇Подписаться на канал👇 https://t.me/uzsduz

Hashtags

123•••10•••1920
ПретходнаСтраница 1 од 20Следна