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

Пребарај: #aiupdate

当前筛选 #aiupdate清除筛选
ChatGPT AI Technology News

@chatgpt_officialnews · Post #96 · 07.05.2025 г., 16:16

🚨 MAJOR UPDATE + NEW NAME INCOMING! 🚨 Hey, digital explorers! Big news: your favorite Telegram AI buddy just got a mega upgrade—and it’s rocking a brand-new identity! Say hello to NeuralHubs AI 🧠⚡️ We’ve outgrown our old circuits, and this evolution is more than just a fresh coat of paint—it’s a full-on AI metamorphosis. 🦋🤖 ✨What’s new? 💡 Smarter than ever: Upgraded intelligence engine—wittier, wiser, and way more helpful. ⚡️ Blazing fast replies: Because patience is sooo pre-2024. 🌍 Multilingual mastery: Chat in your language—we now support way more of them! 🛠 Powerful new tools: From content gen to file help—we’ve got fresh tricks. 🔒 Improved privacy: Because your secrets are safe with NeuralHubs. 🤫 🎨 Sleek new interface & name: Welcome to NeuralHubs AI—your smart assistant HQ. 🧠 Why this matters: This isn’t just an update. It’s a new era. NeuralHubs AI is built to serve creators, students, thinkers, and memers alike—with intelligence that adapts to you. 📣 So next time you see the name NeuralHubs AI, just know—it’s your trusty AI pal, now upgraded and ready for greatness. ➖➖➖➖🔻 💎@Chatgpt_OfficialNews → Soon to be @NeuralHubsNews 🤖 BOT: @Chatgpt_OfficialBOT → Soon @NeuralHubsBot #️⃣#NeuralHubsAI#AIUpdate#TelegramBot#NextGenAI ➖➖➖➖🔺

ChatGPT AI Technology News

@chatgpt_officialnews · Post #21 · 05.02.2025 г., 18:51

⭐️ New Update: Personalized AI modes! ⭐️ We’re bringing you a more personalized experience with our AI bot! 🎉 Now, you can choose a mode that fits your conversation style: 🧠 Standard – Balanced responses for all types of queries. 🧑‍💻 Programmer – Get coding and technical assistance. 💖 Mia (Girlfriend Mode) – Warm, supportive, and friendly chats. 😆 Michael (Boyfriend Mode) – Caring, humorous, and engaging conversations. 🛠 How to Use? Simply type /mode and select the assistant that best suits your needs! Enjoy this new feature and let us know what you think! 🚀 ➖➖➖➖🔻 💎@Chatgpt_OfficialNews – Stay Updated! ⚡️ 🧠 BOT: @Chatgpt_OfficialBOT 📱#ChatGPT#AI#OpenAI#AIUpdate#PersonalizedChat#BotFeatures ➖➖➖➖🔺

ChatGPT AI Technology News

@chatgpt_officialnews · Post #207 · 28.07.2025 г., 20:43

🚨Major Image Update Unlocked!🚨 Our AI image generation just got faster, smarter, and more customizable! ✏️ ➕ We’ve added powerful new models and settings to give YOU more control and stunning results: 🆕 FLUX.1 [schnell] – Ultra-fast with customizable settings 🆕 Stable Diffusion – Balanced, sharp, and detailed visuals ✅ LCM (Latent Consistency Model) – Lightning-fast and lightweight 🔍Why it matters: 🎯 Generate images in under 5 seconds 🪙 Uses fewer tokens – perfect for free users 🖼 Great for artistic, stylized outputs 🔄 Ideal for rapid experimentation and high-volume image creation ➡️Whether you're building, designing, or dreaming — our new models are here to help you create faster and better than ever. Try it now and unleash your imagination! ✨ ➖➖➖➖🔻 🧠 BOT: @Chatgpt_OfficialBOT 💎@Chatgpt_OfficialNews #️⃣#AIUpdate#LCM#StableDiffusion#FLUX#NeuralHubAI#AIArt ➖➖➖➖🔺