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

Резултати

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

Пребарај: #enceladus

当前筛选 #enceladus清除筛选
Universe Mysteries 🪐

@cosmomyst · Post #674 · 11.02.2026 г., 22:21

🪐 Beneath the icy surface of Saturn's moon Enceladus, scientists have found clear evidence of a global subsurface ocean of salty water. Powerful geysers shoot out water vapor and ice particles from cracks called "tiger stripes," revealing the presence of liquid water kept warm by heat from the moon's core—making Enceladus one of the most promising places to search for life beyond Earth. ✨ #Enceladus⚡#moons⚡#oceans⚡#nasa⚡#galaxy⚡#stars⚡#astronomy⚡#universe⚡#cosmos⚡#space 👉subscribe Universe Mysteries 👉more Channels ​

Universe Mysteries 🪐

@cosmomyst · Post #82 · 05.08.2025 г., 00:11

🪐 Saturn’s tiny moon Enceladus harbors a global ocean beneath its icy crust, and scientists have detected plumes of salty water and organic molecules—building blocks of life—eruption from cracks near its south pole. These discoveries suggest that Enceladus may offer the right conditions for simple life to exist, hidden far below the frozen surface. ✨ #Enceladus⚡#astrobiology⚡#ocean⚡#nasa⚡#galaxy⚡#stars⚡#astronomy⚡#universe⚡#cosmos⚡#space 👉subscribe Universe Mysteries

Universe Mysteries 🪐

@cosmomyst · Post #559 · 15.12.2025 г., 12:21

🪐 The only confirmed ingredient for life beyond Earth so far is in the form of organic molecules—carbon-based chemicals—found on Saturn’s moon Enceladus. Data from the Cassini spacecraft revealed plumes of water vapor, methane, and complex organic compounds spraying from cracks in the moon’s icy surface, providing real evidence that some ingredients for life are scattered throughout our solar system as we continue the search for actual alien organisms. ✨ #aliens⚡#Enceladus⚡#organics⚡#nasa⚡#galaxy⚡#stars⚡#astronomy⚡#universe⚡#cosmos⚡#space 👉subscribe Universe Mysteries 👉more Channels ​