@win_meme · Post #39384 · 14.02.2026 г., 06:34
#ants @win_meme
Hashtags
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
Пребарај: #ants
@win_meme · Post #39384 · 14.02.2026 г., 06:34
#ants @win_meme
Hashtags
@interesting_planet_facts · Post #754 · 15.09.2025 г., 13:22
🌎 Leafcutter ants and certain fungi share a remarkable partnership. Ants bring leaves underground—not to eat, but to feed a specific fungus they cultivate as food. This mutualism has existed for over 50 million years, making it one of the oldest known examples of symbiosis in the animal world. ✨ #symbiosis⚡#ants⚡#evolution 👉subscribe Interesting Planet
Hashtags
@interesting_planet_facts · Post #1386 · 27.04.2026 г., 12:11
🌎 Leafcutter ants farm fungus by cutting leaves and bringing them to underground nests. The ants feed the fungus, then eat the fungus as their main food source. Over 47 species of leafcutter ants are found in Central and South America. ✨ #symbiosis⚡#ants⚡#nature 👉subscribe Interesting Planet 👉more Channels
Hashtags
@interesting_planet_facts · Post #1242 · 21.01.2026 г., 12:11
🌎 Army ants in Central and South America show remarkable cooperation by forming living bridges with their bodies. These bridges help the colony cross gaps during raids. Colonies can contain over 200,000 worker ants acting as a single super-organism. ✨ #ants⚡#cooperation⚡#symbiosis 👉subscribe Interesting Planet 👉more Channels
Hashtags
@googlefactss · Post #40309 · 12.12.2025 г., 23:01
Ants don't have lungs. They breathe through tiny holes along the sides of their bodies called spiracles. These connect to a network of tubes (tracheae) that deliver oxygen directly to their tissues. [Read more] @googlefactss #Ants#Biology#Entomology#ScienceFacts
@interesting_planet_facts · Post #476 · 31.07.2025 г., 20:22
🌎 The leafcutter ant creates underground gardens by carrying fresh leaves to feed a special fungus, which is their true food. This farming partnership has evolved over millions of years, making these ants nature’s original farmers long before humans. ✨ #ants⚡#fungus⚡#agriculture 👉subscribe Interesting Planet
Hashtags