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

Резултати

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

Пребарај: #oceanlife

当前筛选 #oceanlife清除筛选
Interesting Planet 🌍

@interesting_planet_facts · Post #1215 · 12.01.2026 г., 12:11

🌎 Vampire squid live more than 2,000 meters below the ocean’s surface, where sunlight never reaches. This deep-sea animal uses long, webbed arms and blue bioluminescent light to confuse predators. Vampire squid can survive with very little oxygen, thriving in one of the planet’s most extreme habitats. ✨ #oceanlife⚡#deepsea⚡#animals 👉subscribe Interesting Planet 👉more Channels ​

Interesting Planet 🌍

@interesting_planet_facts · Post #785 · 20.09.2025 г., 03:22

🌎 Giant isopods, distant relatives of the common pillbug, inhabit the deep ocean at depths exceeding 500 meters. These armored scavengers can reach up to 50 centimeters in length, surviving on the remains of dead sea animals that sink to the seafloor. ✨ #oceanlife⚡#deepsea⚡#biodiversity 👉subscribe Interesting Planet ​

Interesting Planet 🌍

@interesting_planet_facts · Post #462 · 29.07.2025 г., 22:22

🌎 The Pompeii worm thrives on underwater volcanoes, enduring temperatures near 80°C. Its furry back hosts heat-loving bacteria, forming a living protective shield in extreme ocean heat. ✨ #oceanlife⚡#extremophiles⚡#discovery 👉subscribe Interesting Planet

Universe Mysteries 🪐

@cosmomyst · Post #534 · 02.12.2025 г., 22:21

🪐 One of the most surprising places where scientists think life could exist is Jupiter’s moon Ganymede, which hides a deep, salty ocean beneath its thick icy crust. Data from the Galileo spacecraft revealed Ganymede’s magnetic field wobbles in a way best explained by a vast liquid ocean, making this giant moon a real candidate for life far from the warmth of the Sun. ✨ #Ganymede⚡#oceanlife⚡#habitableworlds⚡#nasa⚡#galaxy⚡#stars⚡#astronomy⚡#universe⚡#cosmos⚡#space 👉subscribe Universe Mysteries 👉more Channels ​

🐙Oscar-Winning My Octopus Teacher – A Deep Dive into Unlikely Friendship 🇿🇦 Burnt out and emotionally drained, filmmaker Craig Foster found healing in the ocean off Cape Town. Over eight years, he formed an extraordinary bond with a wild octopus — a creature that became his unexpected teacher. 🎬My Octopus Teacher (2021) is a beautifully shot documentary about connection, balance, and rediscovering the natural world. 🏆 The film won the Oscar and BAFTA for Best Documentary Feature — a must-watch for nature lovers and seekers of meaning. 📽Official trailer (with Russian subtitles): 🔗https://www.youtube.com/watch?v=yP-dgd852Ro #MyOctopusTeacher#Documentary#NatureFilm#OceanLife#CapeTown#SouthAfrica#OscarWinner#BAFTA#Wildlife#Diving#Mustwatch