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

Резултати

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

Пребарај: #defiecosystem

当前筛选 #defiecosystem清除筛选
TON Crypto News

@toncoin_rap · Post #107 · 04.09.2024 г., 17:19

🎧⤴ TON's Open League Season 6: Airdrops, DeFi Boosts & NFT Wars - Ready for September 12! The Open League Season 6 on The Open Network (TON) launches on September 12, shifting focus from competition to collaboration. Users can earn airdrops through Normie and Degen rewards by participating in DeFi, apps, and NFTs. Projects across the ecosystem also benefit from extra incentives, helping TON grow towards 500 million wallets and $1 billion in total value locked (TVL). Verse 1: Season 6, we ready, TON’s on the rise, Normie or Degen, you pick your prize. Airdrops droppin’, apps gettin’ hot, Buildin’ the ecosystem, ready or not. Chorus: 500 mil wallets, TVL through the sky, Open League’s here, reachin’ so high. DeFi, NFTs, stackin’ the gains, We all in this mission, breakin' the chains. Verse 2: DeFi pools deep, vaults full of gold, Projects in the League, their stories unfold. Top three teams, they get the crown, While communities rise, never backin' down. Chorus: 500 mil wallets, TVL through the sky, Open League’s here, reachin’ so high. DeFi, NFTs, stackin’ the gains, We all in this mission, breakin' the chains. Bridge: Mint that badge, Normie or Degen flow, Support the ecosystem, let the numbers grow. TON's the future, crypto on your phone, Together we rise, blockchain’s new throne. Verse 3: NFTs battle, ads on Telegram hit, DeFi League strong, vaults never quit. From apps to protocols, we bring the heat, Season 6 just started, victory's sweet! Chorus: 500 mil wallets, TVL through the sky, Open League’s here, reachin’ so high. DeFi, NFTs, stackin’ the gains, We all in this mission, breakin' the chains. #OpenLeague #DeFiEcosystem #TON 🎧@toncoin_rap