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

Резултати

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

Пребарај: #legendary

当前筛选 #legendary清除筛选
Everything Science

@everything_science · Post #3857 · 31.12.2025 г., 08:54

Tired of getting viruses? Do this. Clean your motherboard daily to make sure those viruses get wiped off your computer forever. #legendary 🔔@Everything_Science

Hashtags

Everything Science

@everything_science · Post #3435 · 05.05.2025 г., 07:49

By writing "sorry" at the bottom of your math test, your teacher will feel sorry for you and probably pass you. #Legendary 🔔@Everything_Science

Hashtags

Everything Science

@everything_science · Post #3350 · 23.03.2025 г., 09:37

Virgin Airlines has announced that from July 2017 they will also be accepting passengers who are not virgins any more. #Legendary 🔔@Everything_Science

Hashtags

Everything Science

@everything_science · Post #3344 · 19.03.2025 г., 18:14

This poor man passed away yesterday when his family couldn't remember his blood type. As he died, he kept insisting for his children to "be positive" What a caring father. A loving man. #Legendary 🔔@Everything_Science

Hashtags

Everything Science

@everything_science · Post #3273 · 10.02.2025 г., 18:25

During child birth, the pain is so intense that women are almost capable of feeling what a man feels when he hears "I love you as a friend" #Legendary 🔔@Everything_Science

Hashtags

Everything Science

@everything_science · Post #3264 · 04.02.2025 г., 11:03

"Peeing in the sink is actually the green way to go, so you're welcome. Instead of wasting 1.6 gallons of water on a flush, you pee in the sink. You then wash your hands in that very same sink, simultaneously washing down the urine and preserving nature's most precious resource." #Legendary 🔔@Everything_Science

Hashtags

Everything Science

@everything_science · Post #3257 · 02.02.2025 г., 07:41

PEARL HARBOR was an inside job, there's no way Japanese planes could've flown THIS distance in 1931. Wake up retards and realise your government has been lying to you, JAPAN is innocent #Legendary 🔔@Everything_Science

Hashtags

Everything Science

@everything_science · Post #3255 · 01.02.2025 г., 07:43

Did you know ? In the 90s Arsenal Soccer Club had a player called David Dicks. When he was injured, the Newspaper wrote"Arsenal to play without Dicks". The coach was upset so the Newspaper changed the headline to read "Arsenal to play with Dicks out"... A record number of women attended the match. #Legendary 🔔@Everything_Science

Hashtags

Everything Science

@everything_science · Post #3248 · 30.01.2025 г., 08:16

name ur daughter lizard then give her the nickname Liz and people will b like oh that's short for Elizabeth? and she'll be like no my name is lizard #Legendary 🔔@Everything_Science

Hashtags

12
ПретходнаСтраница 1 од 2Следна