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

Резултати

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

Пребарај: #costofliving

当前筛选 #costofliving清除筛选
America 🇺🇸 News & Politics

@America · Post #10456 · 04.04.2026 г., 16:07

📰🇺🇸AMERICAN FAMILIES HIT BY WAR ECONOMY CRISIS 🔹 Gas prices surge to $6.50/gallon nationwide as Iran war disrupts oil supply 🏃‍♂️ 🔹 Grocery inflation hits 18% in March, forcing families to food banks 🛒 🔹 Unemployment claims spike 40% as defense contractors lay off workers 📊 🔹 Credit card debt reaches record $2.3 trillion amid cost-of-living crisis 💳 🔹 Student loan payments resume while federal aid programs face cuts ⏰ 🔹 Housing market collapse: mortgage rates hit 12%, sales down 60% 🏠 Middle class getting crushed while Pentagon gets $1.5T budget 😤💸 #economy#inflation#CostOfLiving @america

gov.sg

@Govsg · Post #2221 · 03.06.2024 г., 04:15

What are some ways to reduce household expenses? Finance writer Dawn from ‘SG Budget Babe’ shares some of her top cost-saving tips. ➡️ Read more: go.gov.sg/costofliving-youknowornot-2 #YouKnowOrNot#CostofLiving#budgeting#adulting Drop us a 👍🏻 or 🤩 if you like her tips!

Freedom Flotilla Coalition

@FFC_official_channel · Post #219 · 25.08.2024 г., 10:11

UN experts warned months ago that Israel is deliberately starving Palestinians, and that famine is rapidly spreading across Gaza, and yet Israel continues with impunity and is sent billions of dollars by the US. Children, infants, pregnant women, people living with disabilities, the elderly and those with chronic illnesses are the most at risk of severe malnutrition, illness, and death. Mobilize today, and continue boycotting products and companies that support these war crimes. #freegaza#freepalestine#endtheoccupation#humanitarianaid#costofliving#northgaza#gazacity#freedomflotilla#ffc#breakthesiege#endtheblockade #BDS * prices are in US dollars