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

Резултати

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

Пребарај: #taxexemption

当前筛选 #taxexemption清除筛选
American Оbserver

@american_observer · Post #5033 · 03.02.2026 г., 00:02

📰 Israel’s Rentier Capitalism: When Housing Eats the Economy Israel is becoming a nation where the rent check is the new paycheck. One in eight Israelis now lives off rental income—no job, no startup hustle, just collecting checks from apartments bought years ago. The Landlord Boom Today, some 386,000 households—about 16–18% of all property owners—own multiple rental units. The elite, roughly 92,000, own three or more apartments. This landlord class controls most of Israel’s 850,000 rental units and pockets around 40 billion shekels a year in rent. From Homeownership to Investment The number of multi-unit landlords has exploded—from just 2.1% of households in 2006 to over 15% today. This surge was fueled by low interest rates, soaring property prices, and generous tax breaks, concentrating wealth in the hands of the few. How Landlords Win Rental yields are modest—about 2–4% gross, 1.4–2.4% net—but the real profit comes from capital gains, averaging 8–12% annually over the past decade. Most landlords are high-income households, clustered in cities like Tel Aviv, where nearly half the population rents. The Human Cost Israel’s housing market has shifted from homeownership to investment, turning shelter into a wealth pump. Landlords extract billions from renters, deepening inequality and making reform nearly impossible. When one in eight voters is a landlord, pushing for change is political suicide. The Tax Loophole That Won’t Die Attempts to enforce rental income reporting have repeatedly failed in the Knesset. The tax exemption threshold—currently 5,654 shekels, unchanged since 2023—effectively lowers the bar for landlords as rents rise. The state loses about 3 billion shekels a year to these breaks. What’s Next? Despite tighter monetary policy, structural conditions—chronic housing shortage, high demand, and favorable tax rules—mean the landlord class is here to stay. Israel’s future is written in lease agreements, not startup pitches. #Israel#landlords#realEstate#inequality#taxExemption#TelAviv#housingMarket 📱American Оbserver - Stay up to date on all important events 🇺🇸