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 слични објави

Пребарај: #architecturenews

当前筛选 #architecturenews清除筛选

Secret Gardens. Winning Housing Project by Vincent Callebaut Architectures in Montpellier, France Vincent Callebaut Architectures is the winner – in a consortium with Bouygues Immobilier Languedoc-Roussillon & Vestia Promotions – of the SERM/SA3M group's call for projects for a 4,013 m² property in the City of Montpellier within the ZAC EAI, the beating heart of the new Creative City, crossroads of Cultural and Creative Industries. The programme for "Secret Gardens" includes 113 apartements – 30% of which are in the form of affordable housing – divided between three buildings, promoting a residential experience in an environment where social cohesion, well-being and living together are paramount. Architecture: Vincent Callebaut Architectures Location: Montpellier, France #arch_shovel#architecture#winner#award#architecturenews#news

Ombelle complex. New York-based architecture studio ODA has revealed the design of Ombelle, a duo of residential towers. Architect: ODA Location: Fort Lauderdale, Florida. #arch_shovel#architecture#newyork#news#ArchitectureNews#towers

City of Leaves / Tech city of Healing. 80m tower as a floating roof with green garden underneath. Sou Fujimoto won the competition to design a tower and cultural facilities in Nanchang, China. Architecture: Sou Fujimoto Client: China Jinmao 中国金茂 Location: Nanchang, China Program: Culture Center, Observatory Tower and Restaurant. #arch_shovel#architecture#SouFujimoto#architects#award#news#ArchitectureNews