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

Резултати

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

Пребарај: #beirut

当前筛选 #beirut清除筛选
Marwa Osman/MidEaStream

@Marwa_OsmanLB · Post #3713 · 24.11.2024 г., 11:23

Hezbollah missiles falling on Tel Aviv at 1:00 pm in retaliation to the massacres committed against Lebanese civilians in the heart of the Lebanese capital #Beirut.

Hashtags

Marwa Osman/MidEaStream

@Marwa_OsmanLB · Post #3698 · 23.11.2024 г., 02:35

Footage from the massacre committed by the Zionist enemy on a building on Fathalla Street in the heart of the capital #Beirut Packed..i mean PACKED with residents and displaced people.

Hashtags

Marwa Osman/MidEaStream

@Marwa_OsmanLB · Post #3695 · 22.11.2024 г., 22:38

It’s past midnight in #Beirut, and our "shelter" homes in the capital trembled as if there were no tomorrow—courtesy of the terrorist entity, Israel. Location: Chiyah area, Beirut, Lebanon.

Hashtags

Marwa Osman/MidEaStream

@Marwa_OsmanLB · Post #3652 · 17.11.2024 г., 07:12

Under the world’s complicit silence, Israel continues to flatten clearly residential areas in #Beirut’s southern suburbs. These aren’t military targets. They’re homes. Lives. Futures. This is no accident; it’s a calculated erasure, making sure families have nothing to return to, even if the war ends. This was at 8:00 am today.

Hashtags

Marwa Osman/MidEaStream

@Marwa_OsmanLB · Post #3601 · 09.11.2024 г., 07:42

Another night of terror unfolded in #Beirut as Lebanese civilians endured relentless attacks, targeted by vile Zionist tereorists wielding U.S.-made weapons.

Hashtags

Marwa Osman/MidEaStream

@Marwa_OsmanLB · Post #3442 · 11.10.2024 г., 05:09

Qassem writes about saving this baby in last night's attack by Zionist Israel on the central #Beirut: "This child was lying right here, on the remaining piece of the ceiling. When I reached him, I couldn't believe he could still be alive. But when I saw his eyes looking up at me, and how he grabbed onto me, completely in shock, I didn't know what to feel. This child will grow up, and with him, so will the hatred for this savage entity."

Hashtags

Marwa Osman/MidEaStream

@Marwa_OsmanLB · Post #3313 · 22.09.2024 г., 15:39

The death toll from the Zionist aggression on the southern suburbs of #Beirut has risen to 51, following the recovery of another martyr's body. Ten people are still missing as search and rescue operations continue. Toll provided on 6:30 pm Beirut local time.

Hashtags

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