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

Резултати

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

Пребарај: #hearttoheart

当前筛选 #hearttoheart清除筛选
Love & Relationship Tips ❤ 💖

@loveandrelationshiptips · Post #1722 · 11.10.2025 г., 04:31

🌹 Welcome to Your Daily Dose of Love & Relationship Wisdom! 🌹 Hey there, lovebirds! 💕 Whether you’re navigating the thrilling first dates, deepening a long-term bond, or healing from heartbreak, we’ve got you covered. Every day, we’ll share simple, practical tips to help you build stronger connections, communicate better, and keep the spark alive. ✨ Today’s Tip: Listen More Than You Speak Great relationships start with truly hearing each other out. When your partner talks, put away distractions, make eye contact, and show you care by asking thoughtful questions. It’s amazing how much closer you’ll feel when you really listen. Stay tuned for more heartfelt advice, fun ideas, and inspiring stories to nurture your love life. Remember, love is a journey—not a destination. Let’s walk it together! ❤️ #LoveTips#RelationshipGoals#HeartToHeart#StrongerTogether @loveandrelationshiptips

Love & Relationship Tips ❤ 💖

@loveandrelationshiptips · Post #1723 · 11.10.2025 г., 04:54

💡 Quick Love Quiz: What’s Your Communication Style? 💡 When you and your partner hit a rough patch, how do you usually handle it? A) Talk it out immediately — no matter what B) Need some space before discussing things C) Avoid conflict and hope it blows over D) Get emotional but try to listen Which one sounds like you? Comment your letter and tell us why! Let’s see how different styles shape our relationships and what we can learn from each other. 💬❤️ #LoveTips#RelationshipTalk#CommunicationMatters#LoveQuiz#HeartToHeart @loveandrelationshiptips

Love & Relationship Tips ❤ 💖

@loveandrelationshiptips · Post #1726 · 11.10.2025 г., 08:30

💬 Let’s Talk Heart-to-Heart 💬 True connection happens when we drop the masks and speak from the heart. A heart-to-heart isn’t just about sharing words—it’s about being vulnerable, honest, and open to understanding each other deeply. It’s in these moments that trust grows and relationships transform. Next time you feel the need to connect, try this: pause, breathe, and share what’s really on your mind and in your heart. You might be surprised how much closer it brings you. Remember, every meaningful relationship thrives on genuine conversations. So, don’t hesitate—open up and listen with your heart. ❤️ #HeartToHeart#DeepConnections#RealTalk#LoveAuthentically#SpeakYourTruth @loveandrelationshiptips