TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

TGINSIGHT SIMILAR POSTS

Најди сличен содржај

Изворен канал @pythonotes · Post #402 · 22 дек.

Отдельно разберём TaskGroup, который пришел на замену gather в Python 3.11. Ключевые отличия ▫️create_task() возвращает объект asyncio.Task, у которого есть соответствюущие методы управления. То есть у нас больше контроля ▫️это контекстный менеджер, который гарантирует что все таски будут остановлены по выходу из контекста ▫️ошибка автоматически отменяет незавершенные задачи, ▫️except* передает нам ExceptionGroup, в котором каждую ошибку можно обработать отдельно import asyncio import random async def do_it() -> str: if random.random() < 0.1: raise ValueError('Oops') delay = random.uniform(0.5, 1.5) await asyncio.sleep(delay) return delay async def main(): try: async with asyncio.TaskGroup() as tg: for _ in range(10): tasks.append(tg.create_task(do_it())) for t in tasks: print(t.result()) except *ValueError as e: for err in e.exceptions: print(err) asyncio.run(main()) Рекомендую изучить страницу Coroutines and Tasks из документации, где представлено больше интересных примеров и механизмов - таймауты - отмена задач - создание задач из другого потока #async

Hashtags

Резултати

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

Пребарај: #electricsedan

当前筛选 #electricsedan清除筛选
Auto Life

@revheadcrypto · Post #246 · 05.08.2024 г., 10:08

🚗✨BYD Unveils Updated Interior of the Seal Electric Sedan✨🚗 BYD has revealed the refreshed interior of its electric sedan, the Seal, and it’s a game changer! The dashboard design has been significantly revamped, featuring a sleek new look where the instrument screen no longer towers over the front panel. 🛠️ Key updates include: - A modern steering wheel 🛞 - Hidden ventilation vents 🌬️ - Redesigned central tunnel architecture 🔧 According to data from the Chinese Ministry of Industry, the power of the base rear-wheel-drive version has increased from 204 to 231 hp! 🚀 Plus, the lineup will still include a 313-hp single-motor version and a powerful 530-hp dual-motor variant. 💪 Check out the comparison: 📸 Photo 2 – Updated version 📸 Photo 3 – Pre-facelift version #BYD#Seal#ElectricSedan#InteriorDesign#CarUpdates#Innovation#Auto

Auto Life

@revheadcrypto · Post #263 · 07.08.2024 г., 18:21

🚗✨Exciting News: Huawei and BAIC's Stelato S9 Gets a Price Cut!✨🚗 The local competitor to the Mercedes-Benz EQS has just launched pre-orders at a new, lower price! Originally priced between 450,000 and 550,000 yuan (approximately $62,000 to $76,000), the Stelato S9 is now available for just 399,800 to 449,800 yuan (about $56,000 to $63,000)! 💰🎉 The base model features a powerful 309-horsepower rear motor, while the premium versions come with an additional front motor boasting 215 horsepower. 🏎️💨 This electric sedan can accelerate from 0 to 100 km/h in just 3.9 seconds! ⚡️🔥 #StelatoS9#Huawei#BAIC#ElectricSedan#PriceCut#LuxuryOnWheels#Auto