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

Резултати

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

Пребарај: #legendary

当前筛选 #legendary清除筛选
Everything Science

@everything_science · Post #3857 · 31.12.2025 г., 08:54

Tired of getting viruses? Do this. Clean your motherboard daily to make sure those viruses get wiped off your computer forever. #legendary 🔔@Everything_Science

Hashtags

Everything Science

@everything_science · Post #3435 · 05.05.2025 г., 07:49

By writing "sorry" at the bottom of your math test, your teacher will feel sorry for you and probably pass you. #Legendary 🔔@Everything_Science

Hashtags

Everything Science

@everything_science · Post #3350 · 23.03.2025 г., 09:37

Virgin Airlines has announced that from July 2017 they will also be accepting passengers who are not virgins any more. #Legendary 🔔@Everything_Science

Hashtags

Everything Science

@everything_science · Post #3344 · 19.03.2025 г., 18:14

This poor man passed away yesterday when his family couldn't remember his blood type. As he died, he kept insisting for his children to "be positive" What a caring father. A loving man. #Legendary 🔔@Everything_Science

Hashtags

Everything Science

@everything_science · Post #3273 · 10.02.2025 г., 18:25

During child birth, the pain is so intense that women are almost capable of feeling what a man feels when he hears "I love you as a friend" #Legendary 🔔@Everything_Science

Hashtags

Everything Science

@everything_science · Post #3264 · 04.02.2025 г., 11:03

"Peeing in the sink is actually the green way to go, so you're welcome. Instead of wasting 1.6 gallons of water on a flush, you pee in the sink. You then wash your hands in that very same sink, simultaneously washing down the urine and preserving nature's most precious resource." #Legendary 🔔@Everything_Science

Hashtags

Everything Science

@everything_science · Post #3257 · 02.02.2025 г., 07:41

PEARL HARBOR was an inside job, there's no way Japanese planes could've flown THIS distance in 1931. Wake up retards and realise your government has been lying to you, JAPAN is innocent #Legendary 🔔@Everything_Science

Hashtags

Everything Science

@everything_science · Post #3255 · 01.02.2025 г., 07:43

Did you know ? In the 90s Arsenal Soccer Club had a player called David Dicks. When he was injured, the Newspaper wrote"Arsenal to play without Dicks". The coach was upset so the Newspaper changed the headline to read "Arsenal to play with Dicks out"... A record number of women attended the match. #Legendary 🔔@Everything_Science

Hashtags

Everything Science

@everything_science · Post #3248 · 30.01.2025 г., 08:16

name ur daughter lizard then give her the nickname Liz and people will b like oh that's short for Elizabeth? and she'll be like no my name is lizard #Legendary 🔔@Everything_Science

Hashtags

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