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

TGINSIGHT SIMILAR POSTS

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

Изворен канал @pythonotes · Post #309 · 2 фев.

Метод строки split() разделяет строку на несколько строк по указанному символу >>> "a_b_c".split('_') ['a', 'b', 'c'] Можно указать максимальное количество разделений >>> "a_b_c".split('_', 1) ['a', 'b_c'] Или резать с другой стороны с помощью rsplit() (right split) >>> "a_b_c".rsplit('_', 1) ['a_b', 'c'] А что будет если оставить аргументы пустыми? >>> "a_b_c".split() ['a_b_c'] Получаем список с одним элементом, потому что по умолчанию используется пробельный символ. >>> "a b c".split() ['a', 'b', 'c'] То есть это равнозначно такому вызову? >>> "a b c".split(" ") ['a', 'b', 'c'] Кажется да, но нет! Давайте попробуем добавить пробелов между буквами >>> "a b c".split(" ") ['a', '', '', 'b', '', '', 'c'] И вот картина уже не так предсказуема 😕 А вот что будет по умолчанию >>> "a b c".split() ['a', 'b', 'c'] Всё снова красиво! 🤩 По умолчанию в качестве разделителя используется любой пробельный символ, будь то табуляция или новая строка. Включая несколько таких символов идущих подряд. А также игнорируются пробельные символы по краям строки. >>> "a\t b\n c ".split() ['a', 'b', 'c'] Аналогичный способ можно собрать с помощью регулярного выражения. Но пробелы по краям строки придется обрабатывать дополнительно. >>> import re >>> re.split(r"\s+", ' a b c '.strip()) ['a', 'b', 'c'] Здесь тоже можно указать количество разделений >>> re.split(r"\s+", 'a b c', 1) ['a', 'b c'] А что если мы хотим написать красиво, то есть split() без аргументов, но при этом указать количество разделений? В этом случае первым аргументом передаём None >>> "a\n b c".split(None, 1) ['a', 'b c'] Данный метод не учитывает строки с пробелами, взятые в кавычки 'a "b c" '.split() ['a', '"b', 'c"'] Но для таких случаев есть другие способы. #tricks#basic

Резултати

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

Пребарај: #trackready

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

@revheadcrypto · Post #209 · 31.07.2024 г., 14:10

🚗💨 Introducing the track-ready Cadillac CT5-V! 🎉 This powerful beast now features a Precision Package with enhanced suspension, including increased stiffness and reprogrammed adaptive dampers for an exhilarating ride on the track! 🏁✨ 🔧 Key Highlights: - Carbon-Ceramic Brakes for superior stopping power 🛑 - 6.2L V8 Engine producing an impressive 677 hp and 892 Nm of torque 💪🔥 - RWD for that ultimate driving experience! Get ready to unleash the power! 💥 #CadillacCT5V#PrecisionPackage#TrackReady#V8Power#Auto

Auto Life

@revheadcrypto · Post #594 · 21.10.2024 г., 07:40

🚗✨Introducing the Updated Porsche 911 GT3!✨🚗 The iconic 911 GT3 has received a stunning facelift, enhancing its road and track performance! 🏁 🔍What’s New? • Sleek Design: Updated lighting and bumpers inspired by the latest 911 models. • Interior Upgrade: A new digital dashboard and lightweight carbon seats with removable headrests for helmet use on the track! 🎧🏎️ • Powertrain: The legendary 4.0L flat-six engine remains at 510 hp, now compliant with Euro 6e standards, featuring two particulate filters and four catalytic converters. However, max torque has been adjusted from 470 Nm to 450 Nm. 🌟Options Galore: The GT3 will still offer the Touring package, featuring a discreet retractable spoiler and luxurious leather finishes instead of suede. 💰Pricing: • Starting at €209,000 in Germany 🇩🇪 • Starting at $224,495 in the USA 🇺🇸 🗓️Order Book Opening: Late this year! #Porsche911GT3#SportsCar#CarEnthusiasts#TrackReady#LuxuryPerformance#PorscheLife#Auto

Auto Life

@revheadcrypto · Post #383 · 25.08.2024 г., 13:29

🏁🚗 Toyota Unveils Upgraded Supra GT4 Evo2! 🌟 Get ready to hit the track with the latest iteration of the iconic Supra GT4, now available for €202,000!💰 This is the second upgrade, designed with valuable feedback from racers. 🔧 What's New: - Enhanced ABS for better control 🛠️ - Optimized ZF automatic transmission for smoother shifts ⚙️ - Improved cooling for the powerful 3.0L inline-six engine ❄️ - Refined cabin temperature for ultimate comfort during races 🌬️ #ToyotaSupra#GT4Evo2#Racing#TrackReady#CarEnthusiasts#AutomotiveInnovation#Supra#Sports

Auto Life

@revheadcrypto · Post #648 · 23.11.2024 г., 06:05

🚗💨Introducing the Porsche 911 GT3 RS with Manthey Racing Tuning Kit!💥🏁 Transform your track experience with a stunning upgrade for just $125,000! This kit significantly enhances stability and handling, generating over a ton of downforce at speeds of 285 km/h without increasing drag. ⚙️✨ 🔧Key Features: • 30% stiffer springs in the front and 15% in the rear • New adaptive dampers with dual valves for independent control • Lightning-fast response time (20-30 ms) managed by a custom module • Enhanced brake lines and optional high-durability racing pads 🏆 The Manthey Racing team is on a mission to shave seconds off the lap time at the legendary Nürburgring! ⏱️🌟 #Porsche911#GT3RS#MantheyRacing#TrackReady#PerformanceUpgrade#Nürburgring#CarEnthusiast#RacingLife#Supercar#Auto