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

Пребарај: #skillgaming

当前筛选 #skillgaming清除筛选
TONlines – News

@tonlines · Post #6981 · 30.04.2025 г., 11:55

⚡️TapSwap Community: Major News Incoming Tomorrow! #TapSwapBeta#SkillGaming#Web3Games TapSwap Community announces a major update about their private beta launching tomorrow, featuring three exclusive skill-based games in Telegram. Limited spots are available, and interested participants should prepare to apply using a Google form link with their Telegram handle. Source: link @tonlines

TONlines – News

@tonlines · Post #6772 · 15.04.2025 г., 09:28

TapSwap Community: Elevate Your Gaming Skills with Precision #SkillGaming#TapToWin#ClassicWithCrypto The TapSwap Community emphasizes skill and precision in classic games like Tetris, Solitaire, and Bubble Shooter. Players are encouraged to hone their focus and ability to outplay and earn, adding purpose to their gaming experience. Source: link @tonlines

Nigeria Football Hub

@football_nigeria · Post #1098 · 19.05.2025 г., 14:01

🎮TapSwap officially launched the beta! The project has made an important step forward — now skill games are available for the first testers directly in Telegram. Convenient format, fast loading and no unnecessary actions. What's included in the beta: • 🎯 Three games where the outcome depends on your skills • 💰 Integration with $TAPS • 📲 Access via Telegram mini-app ⚠️ At the current stage, only selected users have access to the beta. If you are among them, you can already try out the platform before the official release. 🗓The public launch is scheduled for early June. #TapSwap#БетаЗапуск#SkillGaming#Web3UA Bot link:tapswap_bot📱 Nigeria Football Hub

INSIDER USA | News

@insider_usa_news · Post #3352 · 19.05.2025 г., 13:04

🎮TapSwap officially launched the beta! The project has made an important step forward — now skill games are available for the first testers directly in Telegram. Convenient format, fast loading and no unnecessary actions. What's included in the beta: • 🎯 Three games where the outcome depends on your skills • 💰 Integration with $TAPS • 📲 Access via Telegram mini-app ⚠️ At the current stage, only selected users have access to the beta. If you are among them, you can already try out the platform before the official release. 🗓The public launch is scheduled for early June. #TapSwap#БетаЗапуск#SkillGaming#Web3UA Bot link:tapswap_bot📱 INSIDER USA 👉🏻 Subscribe