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

Пребарај: #elizabethwarren

当前筛选 #elizabethwarren清除筛选
Reuters: World

@reutersworldchannel · Post #149382 · 14.10.2021 г., 22:21

Senator Elizabeth Warren urges Amazon breakup Senator Elizabeth Warren called for a break-up of Amazon after a Reuters investigation showed the e-commerce giant had copied products and rigged search results in India. #Amazon#ElizabethWarren#News#Reuters Subscribe: http://smarturl.it/reuterssubscribe Reuters brings you the latest business, finance and breaking news video from around the globe. Our reputation for accuracy and impartiality is unparalleled. Get the latest news on: http://reuters.com/ Follow Reuters on Facebook: https://www.facebook.com/Reuters Follow Reuters on Twitter: https://twitter.com/Reuters Follow Reuters on Instagram: https://www.instagram.com/reuters/?hl=en ➖@reutersworldchannel➖

Crypto M - Crypto News

@CryptoM · Post #65056 · 10.04.2026 г., 16:54

🚀 U.S. Senator Warren Urges CFTC to Investigate Oil Trades Linked to Trump's Iran Remarks U.S. Senator Elizabeth Warren has called on the Commodity Futures Trading Commission (CFTC) to investigate oil trades connected to U.S. President Donald Trump's statements on Iran. According to Odaily, Warren's request aims to scrutinize the potential impact of Trump's comments on market activities. The senator's letter to the CFTC highlights concerns over the influence of political rhetoric on commodity markets. #ElizabethWarren#CFTC#OilTrades#Trump#Iran#CommodityMarkets#PoliticalRhetoric#MarketInfluence

Crypto M - Crypto News

@CryptoM · Post #64460 · 09.04.2026 г., 01:09

🚀 CZ Accepts Prosecution as Consequence of Scale, Looks Forward Despite Fairness Doubts Speaking on The Wolf of All Streets Podcast, Binance co-founder Changpeng Zhao (CZ) reflected on the fairness of his prosecution, drawing a parallel to the 1980s US War on Drugs — in which people received lengthy prison sentences for selling marijuana that is now legal in many states — to illustrate how legal standards shift over time. CZ said he believes Binance was the first major crypto platform targeted by the US government under the Biden administration because it was the largest, adding that he understands Senator Elizabeth Warren remains opposed to crypto. He characterized the question of fairness as subjective and said he does not dwell on it. "Is that fair or not? I don't think it matters that much," he said, adding that he is focused on looking forward and continuing to build. #Binance#ChangpengZhao#Crypto#Cryptocurrency#Prosecution#Legal#USGovernment#ElizabethWarren#Blockchain#Regulation#BNB

Crypto M - Crypto News

@CryptoM · Post #65200 · 11.04.2026 г., 21:48

🚀 Trump-linked Tokens TRUMP and WLFI Continue to Decline Trump-linked tokens TRUMP and WLFI have experienced significant declines, with TRUMP approximately 90% below its all-time high and WLFI nearly 75% below its peak. According to NS3.AI, CoinGecko data indicates that TRUMP reached an all-time low of about $2.73 in March 2026 and is currently trading near $2.86. Meanwhile, U.S. President Donald Trump has promoted an April 25 gala for token holders. In a related development, Senators Elizabeth Warren, Richard Blumenthal, and Adam Schiff have requested Bill Zanker to provide details about the event. #TrumpTokens#TRUMP#WLFI#Cryptocurrency#Decline#NS3AI#CoinGecko#DonaldTrump#ElizabethWarren#RichardBlumenthal#AdamSchiff#BillZanker#TokenHolders