@mashinalar · Post #1233 · 12.11.2022 г., 18:41
😍🤩 #MercedesBenz#MercedesEQ#ProgressiveLuxury#ElectricCar @mashinalar
TGINSIGHT SIMILAR POSTS
Изворен канал @pythonotes · Post #418 · 9 мар.
Оператор pipe позволяет писать более компактный код, реализуя логику объединения данных (Union). Важно помнить, что его поведение зависит от контекста. Побитовые операции (логическое OR) result = 5 | 3 # 5 (0101) | 3 (0011) = 7 (0111) Самое главное - не путать с оператором or, это другое! Объединение множеств set_a = {1, 2, 3} set_b = {3, 4, 5} set_c = set_a | set_b # {1, 2, 3, 4, 5} set_c |= {5, 6} # {1, 2, 3, 4, 5, 6} Слияние словарей dict_1 = {"a": 1, "b": 2} dict_2 = {"b": 3, "c": 4} merged = dict_1 | dict_2 # {'a': 1, 'b': 3, 'c': 4} merged |= {"d": 5} # {'a': 1, 'b': 3, 'c': 4, 'd': 5} Аннотации типов, заменяет Union def process_data(value: int | str) -> None: print(value) Допустимо использовать в isinstance или issubclass isinstance(3, int | float) # True Паттерн-матчинг status_code = 404 match status_code: case 200 | 201 | 204: print("OK") case 400 | 404 | 500: print("ERROR") Для использования в своих классах требуется переопределить метод __or__ Так же нашел библиотеку pipe которая добавляет еще много возможностей. Рекомендую ознакомиться ;) #basic
Hashtags
Пребарај: #electriccar
@mashinalar · Post #1233 · 12.11.2022 г., 18:41
😍🤩 #MercedesBenz#MercedesEQ#ProgressiveLuxury#ElectricCar @mashinalar
@fidostudio · Post #38 · 07.04.2022 г., 15:27
Avtovolt24 is a news website about electric cars and related technologies. #electric#electriccar#evcar#animation#illustration#web sity Follow us: Telegram · Instagram · Dribbble
@revheadcrypto · Post #154 · 23.07.2024 г., 15:33
✨ Presenting the Cadillac Sollei convertible with a stunning mushroom-based interior! 🍄 This concept, based on the production platform of the electric Celestiq, features a unique body design and interior finish using five different wood types and the bio-material Fine Mycelium, including mushroom mycelium. The Sollei showcases the revival of the classic Manila Cream color from the late 1950s. While specific technical details are yet to be revealed, the production Celestiq is equipped with electric motors producing around 600 horsepower. #Cadillac#Sollei#Celestiq#ElectricCar#Auto#ConceptCar🚗💫
@revheadcrypto · Post #399 · 28.08.2024 г., 18:33
🚗💨Introducing the World’s Fastest Armored Vehicle: Lucid Air💨🚗 Meet the Lucid Air Sapphire, a stunning 1250-horsepower electric car that’s not just about speed—it’s also built to protect! 🛡️✨ This beast is equipped with composite armor and bulletproof glass, capable of withstanding shots from .44 Magnum handguns (think Desert Eagle!). 🔫💥 For those seeking extra security, optional upgrades can enhance protection against grenades and automatic rifle fire. Priced at $475,000, this armored marvel is nearly double the cost of the standard Air Sapphire. 💰💎 #LucidAir#ArmoredVehicle#ElectricCar#Luxury#SafetyFirst#Innovation#Auto
@revheadcrypto · Post #657 · 30.11.2024 г., 14:03
🚗✨Introducing the Maserati GranTurismo Folgore 110 Anniversario!🎉 In celebration of its anniversary, Maserati is releasing just 110 exclusive electric coupes! 🌟 This special edition will stand out with its unique finishes. Choose between the stunning Matte Gray Rame Folgore with a two-tone interior or the elegant Dark Blue Blu Inchiostro with a sleek black interior. 🖤💙 Each model will feature special copper-colored wheels, adding a touch of elegance to this powerful machine. 🛞✨ Under the hood, the Folgore version boasts three electric motors, making it the most powerful GranTurismo available! 💪 With a nominal output of 762 hp and a temporary boost up to 829 hp, it can accelerate from 0 to 100 km/h in just 2.7 seconds! ⚡️🔥 #Maserati#GranTurismo#Folgore#Anniversario#ElectricCar#LuxuryCars#Performance#Exclusivity#Auto