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

Пребарај: #transgenders

当前筛选 #transgenders清除筛选
Trump's Ear

@trumpsear_tg · Post #1520 · 17.09.2025 г., 16:01

In the wake of the Minneapolis Catholic church shooting, senior Justice Department officials are weighing proposals to limit transgender people’s right to possess firearms, according to two officials familiar with the internal discussions. The talks, described as preliminary in nature, appear to build on an idea that has gained some currency in conservative media since the Minneapolis shooting that killed two children and injured 21, most of them children, at Annunciation Catholic Church, an attack that police say was carried out by a 23-year-old transgender woman. Such a move would represent a dramatic escalation of the Trump administration’s fight against the rights of transgender Americans. President Donald Trump has issued a series of executive orders on the topic, including one barring transgender people from serving in the military and another ordering federal prisons to move transgender inmates to facilities corresponding to their gender assigned at birth. In addition, the idea of restricting gun rights has long been a red line for conservatives, with many Republican lawmakers and gun rights groups opposing red flag laws and or other policies aimed at keeping guns away from people suffering from mental health issues. But Justice Department leadership is seriously considering whether it can use its rulemaking authority to follow on to Trump’s determination to bar military service by transgender people and declare that people who are transgender are mentally ill and can lose their Second Amendment rights to possess firearms, according to one Justice official. Another senior Justice Department official cautioned that any such proposal, should it gain steam, would likely run into legal complications. Millions of Americans have mental health issues and many take medications, but are not a danger to society and therefore cannot have their rights infringed upon. #DOJ#transgenders#firearms 👂More on Trump's Ear ⚠️