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

Пребарај: #ophiuchus

当前筛选 #ophiuchus清除筛选
Universe Mysteries 🪐

@cosmomyst · Post #26 · 30.07.2025 г., 01:51

🪐 Hidden over 430 light-years away in the constellation Ophiuchus, the protoplanetary disk around the young star AS 209 is riddled with striking gaps and rings thought to be carved by newly forming planets. ALMA observations revealed the disk’s outermost gap may be created by a planet similar in mass to Neptune, astonishing astronomers because it would be forming over 200 astronomical units from its star—far beyond the realms where planets are usually born. ✨ #protoplanets⚡#ALMA⚡#Ophiuchus 👉subscribe Universe Mysteries

Universe Mysteries 🪐

@cosmomyst · Post #193 · 26.08.2025 г., 16:11

🪐 The black hole MAXI J1820+070, about 10,000 light-years away in the constellation Ophiuchus, is known for its rapid and dramatic changes in brightness. These "black hole outbursts" happen when the black hole pulls in matter from a companion star, causing huge X-ray flares as the material heats up and spirals inward—revealing just how active and unpredictable these cosmic giants can be. ✨ #blackhole⚡#xray⚡#Ophiuchus⚡#nasa⚡#galaxy⚡#stars⚡#astronomy⚡#universe⚡#cosmos⚡#space 👉subscribe Universe Mysteries ​

Universe Mysteries 🪐

@cosmomyst · Post #456 · 25.10.2025 г., 12:21

🪐 A rogue planet called ISO-Oph 98, discovered in the Ophiuchus star-forming region about 475 light-years from Earth, is so light it’s only about 0.6% the mass of our Sun—closer to a giant planet than to a star. Unlike most planets, rogue planets like ISO-Oph 98 drift through space without orbiting any star, shining faintly with their own leftover heat rather than reflecting sunlight. ✨ #rogueplanets⚡#starformation⚡#Ophiuchus⚡#nasa⚡#galaxy⚡#stars⚡#astronomy⚡#universe⚡#cosmos⚡#space 👉subscribe Universe Mysteries 👉more Channels ​

Universe Mysteries 🪐

@cosmomyst · Post #530 · 30.11.2025 г., 22:21

🪐 The magnetar 1RXS J170849.0–400910, located about 18,000 light-years away in the constellation Ophiuchus, is known for its titanic magnetic field, which can reach over 100 trillion times the strength of Earth's. This intense magnetism is so powerful that it can twist the star's crust, triggering sudden bursts of X-rays and gamma rays—brief flashes that outshine entire regions of space before fading into darkness. ✨ #magnetar⚡#Xrays⚡#Ophiuchus⚡#nasa⚡#galaxy⚡#stars⚡#astronomy⚡#universe⚡#cosmos⚡#space 👉subscribe Universe Mysteries 👉more Channels ​