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

Резултати

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

Пребарај: #appointments

当前筛选 #appointments清除筛选
@Call News

@call_updates · Post #73 · 09.10.2024 г., 09:58

🆕Appointments here! We glad to present you a 1st version of Appointment system. This journey was challenging, interesting and took 4 months. We faced complex challenges where we had to create a new approach. 🌐 Now you can discover all kind of businesses in one mini app with convenient map. Your country, your service, your time! 🛍 We know that our users want to provide their customers with only the best service that will work 24/7 without interruption. All on one page and app. Provide services and book services from others. The era of Telegram appointments is now open! And don't forget, almost all new businesses will be available for viewing and researching by thousands of Callegram users. Don't miss the opportunity to be the first to create a business! App | #Callegram#MiniApps#Appointments

@Call News

@call_updates · Post #71 · 03.10.2024 г., 06:40

🔜 We're at the finish line! This is what the booking process will look like from the client's side. Choose the time, master and service that is convenient for YOU 👍 App | #Callegram#MiniApps#Appointments

@Call News

@call_updates · Post #68 · 16.09.2024 г., 14:10

✏️Find a Cool Service Directly in @CallegramBot? Why Not? We’re almost here with a new huge update — Appointments. Our users will be trying to find an awesome services directly in the mini app. We’re doing our best! App | #Callegram#MiniApps#Appointments

@Call News

@call_updates · Post #59 · 09.08.2024 г., 13:05

©Appointments: First Impressions This video shows how to create a business and service pages. Soon you will able to provide your offline and online services to your customers with convenient way to book them automatically in a few clicks within Telegram 🗓 We're waiting your comments! App | #Callegram#MiniApps#Appointments

@Call News

@call_updates · Post #78 · 06.11.2024 г., 12:00

🚨AI Takes Your Job And this is awesome! Today we’ve tried our first version of AI Appointments. And it works really great! In the near future your clients will chat with you about services and AI will assist you with confirming appointments. Different languages, text and voice messages. No more annoying work! Be ready for the feature right now. Create your business 🔗t.me/CallegramBot/subscribe_business App | #Callegram#MiniApps#AI#Appointments

@Call News

@call_updates · Post #52 · 03.06.2024 г., 14:30

🔜Appointments In Callegram This is a big part of our service and we want to share with you a first sneak peak. ⚠️ This feature is not available now. Check our news below. Users. You will get an option to make an appointment directly in Telegram for your favorite services. You don’t need to make a call or visit the service location. Just few clicks and you will get what you want + reminders about upcoming service. Businesses. Setup your businesses, locations, specialists, their schedules and services. Automate your handwork and launch your services in Telegram within a few minutes. Marketplaces. If you want to use our Callegram system in your flow and give your merchants opportunity to create an appointment schedule, please contact @krimon 👀 Stay tuned and check the news in our channel #MiniApps#Telegram#Business#Appointments

@Call News

@call_updates · Post #75 · 10.10.2024 г., 15:00

⚙️We've automated everything for you Now your business' schedule is sent automatically if the person writes the words ‘Book’, ‘Appointment’ To activate the function: 1) Create a business with services; 2) Pay subscription; 3) Add @CallegramBot in Telegram settings in "Telegram Business - ChatBots". Now your customers will get a specific message with option to make an appointment. Don't waste time on routine, get down to business. Callegram optimises your work 💰 App | #Callegram#MiniApps#Appointments#TelegramBusiness