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

Резултати

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

Пребарај: #reefs

当前筛选 #reefs清除筛选
Interesting Planet 🌍

@interesting_planet_facts · Post #722 · 10.09.2025 г., 13:22

🌎 Cleaner wrasse fish set up "cleaning stations" on coral reefs where larger fish line up to have parasites removed from their skin and gills. This mutual cooperation benefits both—the wrasse get food and the client fish stay healthy. Some cleaner wrasse perform hundreds of cleaning sessions each day. ✨ #symbiosis⚡#reefs⚡#ocean 👉subscribe Interesting Planet ​

Amazing Geography 🌍

@amazingeo · Post #167 · 03.09.2025 г., 09:12

🌍 Some coral reefs can recover from bleaching by hosting heat-resistant algae. These microscopic partners boost their survival, helping reefs withstand warmer ocean temperatures. ✨ #reefs⚡#biodiversity⚡#ocean⚡#geography⚡#nature⚡#earth 👉subscribe Amazing Geography🌍 ​

Interesting Planet 🌍

@interesting_planet_facts · Post #1356 · 29.03.2026 г., 22:11

🌎 Coral reefs are built on the partnership between coral polyps and microscopic algae called zooxanthellae. The algae live inside the coral and provide energy using photosynthesis, while corals give them shelter and nutrients. This symbiosis is vital—corals eject algae during stress, causing coral bleaching. ✨ #animals⚡#cooperation⚡#reefs 👉subscribe Interesting Planet 👉more Channels ​

Amazing Geography 🌍

@amazingeo · Post #507 · 11.12.2025 г., 12:31

🌍 Some mangrove forests grow right next to coral reefs, creating a double habitat where young fish shelter in tangled roots before moving to open reef waters—a rare team-up found in only a few tropical regions. ✨ #mangroves⚡#reefs⚡#biodiversity⚡#geography⚡#nature⚡#earth 👉subscribe Amazing Geography 👉more Channels ​

Amazing Geography 🌍

@amazingeo · Post #129 · 28.08.2025 г., 00:12

🌍 Coral reefs cover less than 1% of the ocean floor but support about 25% of all marine species. These vibrant ecosystems act as nurseries for countless fish and sea creatures. ✨ #coral⚡#reefs⚡#ocean⚡#biodiversity⚡#geography⚡#nature⚡#earth 👉subscribe Amazing Geography🌍 ​

Interesting Planet 🌍

@interesting_planet_facts · Post #1089 · 01.12.2025 г., 12:11

🌎 Coral reefs provide another remarkable natural record of Earth’s past. As corals grow, they form bands in their skeletons that reflect seasonal changes in water temperature, chemistry, and even extreme weather events. Some coral cores reveal ocean conditions dating back several centuries. ✨ #coral⚡#reefs⚡#paleoclimate⚡#oceanography 👉subscribe Interesting Planet 👉more Channels ​