TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

TGINSIGHT SIMILAR POSTS

Најди сличен содржај

Изворен канал @pythonotes · Post #32 · 7 фев.

Скорее всего уже слышали, что складывать строки через + это плохая практика. Падение производительности, и всё такое. Без лишних слов, давайте измерять: from timeit import timeit def t1(): # складываем 10 строк через + из переменной t = 'text' for _ in range(1000): s = t + t + t + t + t + t + t + t + t def t2(): # склеиваем список строк через метод join arr = ['text'] * 10 for _ in range(1000): s = ''.join(arr) def t3(): # складываем через + но не из переменной а непосредственно инлайн объекты for _ in range(1000): s = 'text' + 'text' + 'text' + ... # всего 10 раз Теперь каждую строку склейки запустим по 10М раз >>> timeit(t1, number=10000) 0.21951690399964718 >>> timeit(t2, number=10000) 1.4978306379998685 >>> timeit(t3, number=10000) 0.2213820789993406 Хм, а нам говорили что через "+" это плохо и медленно ))) 😁 Тут стоит учитывать, что речь идёт о склейке множества длинных строк. Давайте изменим условия: def t4(): t = 'text'*100 for _ in range(1000): s = t + t + t + t + t + t + t + t + t def t5(): arr = ['text'*100] * 10 for _ in range(1000): s = ''.join(arr) def t6(): for _ in range(1000): s = 'text'*100 + 'text'*100 + ... # всего 10 раз >>> timeit(t4, number=10000) 12.795130728000004 >>> timeit(t5, number=10000) 2.642637542999182 >>> timeit(t6, number=10000) 0.2184546610005782 Вот, уже другой разговор, сразу видна разница, в среднем в 6 раз. Но погодите, почему последний тест t6() по скорости такой же как и t3()? Ведь строки теперь в 100 раз длиннее! Это вопросы оптимизации кода, какие простые изменения ускоряют или замедляют выполнение программы. Мы столкнулись с примером обхода обращения к переменной. Например, именно так работает директива #define в С++, во время компиляции подставляя значение переменной вместо ссылки на неё. В Python это тоже работает, но часто ли вы сможете встретить такой способ работы со строками? К сожалению, способ почти только теоретический. В целом, тесты показали то, что мы хотели. Делаем выводы самостоятельно. Полный листинг 🌍 #tricks

Резултати

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

Пребарај: #mediterraneansecurity

当前筛选 #mediterraneansecurity清除筛选
Red Nile

@rednile12 · Post #10450 · 22.12.2025 г., 19:24

🔺Continuation from above @rednile12 ⚔️ Turkey: Strategic Catalyst While Greek officials publicly deny targeting Turkey, the logic is clear: ▪️Turkish Blue Homeland doctrine ▪️Naval assertiveness near Cyprus and drilling disputes ▪️40,000–60,000 troops in northern Cyprus ▪️Expansion in Syria The Xenophon concept is deterrence by coordination, raising the cost of Turkish escalation while avoiding overt provocation. Turkish responses online and politically reveal strategic irritation rather than indifference. 🛢️ EastMed & the U.S. Energy Play The security and energy dimensions are inseparable. EastMed — signed in Athens in January 2020 — was designed to link Israeli and Cypriot gas directly to Greece and onward to Europe, bypassing unstable intermediaries and reducing Europe’s exposure to Russian energy coercion. Consider the broader context: 🔹Nord Stream sabotage and closure of the Ukrainian transit corridor left Russia’s gas flowing via TurkStream, allowing Ankara to profit while Europe remained dependent. 🔹 U.S. President Trump explicitly pushed the EU to stop importing Russian gas while sabotaging Nord Stream, aiming to reroute Europe toward alternative suppliers. 🔹Analysts note the difference between Biden and Trump is one of style, not strategic logic — both administrations favored managing intermediaries over creating truly sovereign connectivity. 🔹 Other attempts, like IMEC linking India, the Gulf, and Europe, reveal the limits of Washington’s approach: symbolic agreements without Mediterranean anchors cannot secure reliable energy corridors, leaving Turkish leverage intact. 🇪🇬 Egypt: Bridge and Buffer Israel’s growing gas cooperation with Egypt complements EastMed rather than undermining it: ▪️ Egypt provides an immediate, pragmatic export route via existing LNG terminals ▪️ EastMed remains the long-term, direct corridor to Europe Together, they offer flexibility without reducing sovereignty. But Egypt’s role is also constrained: it is increasingly a logistics node in an Israel-centric Mediterranean security and energy order, limiting its diplomatic maneuvering, especially regarding Gaza. 🇵🇸 Palestine: Sidelined Palestine remains absent from regional security and energy calculus. Gaza is treated as a permanent security zone, not a political partner, while Israel embeds itself into Mediterranean and European security networks. Arab leverage erodes, and Palestine is reduced from a regional cause to a managed file. 🔻 Strategic Takeaways 🔹Xenophon Force: Multinational rapid response, signaling pro-Western deterrence, complicating Turkish ambitions. 🔹Energy Security: EastMed + Egypt LNG = sovereign flexibility for Europe, bypassing unstable intermediaries. 🔹U.S. Influence: Preference for managing intermediaries (Turkey, Ukraine, Central Asia) over eliminating dependency, risking strategic incoherence. 🔹Regional Impacts: Egypt partially integrated, Palestine structurally marginalized, Turkey forced to recalibrate. This is not peace architecture. It is conflict management for the strong — and structural invisibility for the weak. 🔴Follow @rednile12 for critical geopolitical analysis #RedNile_Geopolitics #EasternMediterranean#XenophonForce#IsraelGreeceCyprus#Turkey#Egypt#Palestine#EastMedPipeline#EnergyGeopolitics#BlueHomeland#NordStream#USEnergyStrategy#MediterraneanSecurity#RedNileMedia