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

Резултати

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

Пребарај: #manualtransmission

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

@revheadcrypto · Post #222 · 02.08.2024 г., 12:26

🚗✨Exciting News for Honda Fans!✨🚗 The Honda Civic has just unveiled its new RS version with a manual transmission! 🎉 This sporty hatchback is designed for the Japanese market and fills the gap between the standard Civic and the high-performance Type R. Key Features of the RS: 🔧 Enhanced suspension with new dampers for a firmer ride 🛠️ Improved steering for better handling 🛑 Upgraded brakes for superior stopping power 💪 Powered by a 1.5-liter engine producing 183 HP and 240 Nm of torque! 🏁💨 #HondaCivic#CivicRS#ManualTransmission#CarEnthusiast#Hatchback#Auto

Auto Life

@revheadcrypto · Post #267 · 08.08.2024 г., 07:34

🚗✨Supercar Pagani Zonda Gets a Manual Transmission!🔧 In a stunning transformation, this iconic roadster has been upgraded with a manual gearbox at the request of renowned collector Mike Iney. 🏎️💨 Powered by a monstrous 760-hp Mercedes-AMG V12 engine with a 7.3-liter displacement, this beauty is ready to deliver an unforgettable driving experience!🔥 #PaganiZonda#ManualTransmission#Supercar#CarEnthusiast#MikeIney#AMGV12#Auto

Auto Life

@revheadcrypto · Post #479 · 12.09.2024 г., 09:22

🚀Introducing the World's Most Powerful Supercar with a Manual Transmission!🏎️💨 The renowned atelier Hennessey has unveiled the new Venom F5-M roadster! 🌟 This stunning version retains the same 1842-hp V8 engine, but swaps the seven-speed automatic for a thrilling six-speed manual gearbox! 🕹️✨ The Hennessey Venom F5-M is set to be the most powerful production supercar with three pedals, starting at an incredible $2.65 million! 💰🔥 Only 12 units of the Venom F5-M will be produced, part of the exclusive batch promised in 2022. The total production of this roadster will not exceed 30 cars! 🛠️🏁 Get ready for an unparalleled driving experience! #Hennessey#VenomF5M#Supercar#ManualTransmission#PowerfulPerformance#CarEnthusiasts#LuxuryCars#LimitedEdition#Auto🚗💥