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

Пребарај: #dobroeserdtse

当前筛选 #dobroeserdtse清除筛选
EKOLOG.UZ| ENG

@ekologuzenglish · Post #11374 · 29.01.2026 г., 12:59

In recent years, systematic and mass cases of cruelty toward donkeys have sharply increased in Uzbekistan, particularly in the districts of Tashkent city. Another severe case was identified in Yangihayot District of Tashkent. The animal’s hindquarters were completely covered with wounds; it had been neglected for a long period and was found in a state of extreme suffering. This incident clearly indicates a failure to fulfill legal obligations toward animals and shows clear signs of cruelty. Practical experience demonstrates that owners actively use donkeys as labor force during the summer, and with the arrival of winter, abandon sick and exhausted animals on the streets. This is a direct consequence of irresponsibility and the absence of a proper animal registration system. As a result, owners of animals subjected to cruelty remain unpunished. Based on the above, we DEMAND: — to conduct an official investigation into cases of cruelty toward donkeys; — to apply measures предусмотренные by law against those responsible; — to strengthen legal liability for animal cruelty; — to develop effective mechanisms to support volunteers and animal shelters. An animal is not property. It is a living being that requires protection by the state. Once again, the animal was saved from death thanks to a volunteer of the “Ekolog” public association, the founder of the “Dobroe Serdtse” shelter — Alisa Tikhomirova. 🐾 Currently, this shelter houses: — more than 100 homeless dogs, — around 10 donkeys who are victims of cruelty. Each of them urgently needs: — medical treatment, — medicines, — food and daily care. ❗️ The entire burden rests on volunteers alone. 🙏 Please do not remain indifferent. Even 10,000 Uzbek soums can save one life. 💳 Donation cards: 5319519615293440 — Mastercard (USD) 5319519615173063 — Mastercard (UZS) 5614682614054668 — Uzcard 8600570424575131 If you stay silent, cruelty will continue. If you help, a life will be saved. 📢 Share this message. 📢 Do not look away. 📢 Be human. #StopAnimalCruelty#DonkeysAreLivingBeings#AnimalProtection#Ekolog#DobroeSerdtse ☘️Read the latest environmental news on the @ekologuz page. Follow us and send your suggestions and wishes via @eklguz_bot Instagram | Facebook | Twitter | Sayt | Youtube