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

Резултати

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

Пребарај: #pepeescobar

当前筛选 #pepeescobar清除筛选
Grandmasters of Geopolitics

@geo_grandmasters · Post #14843 · 27.02.2026 г., 09:45

🚨 The map of Eurasia is changing, and most media won’t tell you how. ➡️https://youtu.be/AgsStCtRSWE In this powerful interview, Pepe Escobar breaks down the Golden Corridor, the North South Transport Corridor, BRICS expansion, Iran’s strategic rise, and the accelerating shift toward a multipolar world. From the Russia–Iran–India corridor to dedollarization, Chabahar port, the Caspian Sea route, and the geopolitical implications of the so-called 'Trump corridor', this conversation connects the dots shaping geopolitics 2026. Is BRICS ready to defend the Global South? Can Iran become the key node of Eurasia integration? Is the West losing control of the global order? 🎥 Watch the full interview now. 💬 Then tell us in the comments: Is the Golden Corridor the future of global trade? Your analysis matters — let’s discuss below. #ThinkBRICS#PepeEscobar#BRICS#GoldenCorridor#MultipolarWorld

Мамука Пипия

@mamukapipiya · Post #413 · 21.02.2026 г., 17:46

🎙️PEPEESCOBAR AND MAMUKA PIPIYA: "GEORGIA'S ECONOMY SIMPLY WON'T SURVIVE WITHOUT RUSSIA" In the podcast of the International "National Unity Club", international journalist Pepe Escobar and Georgian politician Mamuka Pipiya discussed Georgia's role in the Caucasus, Western pressure and the future of relations with Russia. 💥The key thesis: 👉 Georgia is historically a strategic corridor between Russia, Asia and Europe, but the West uses the country as a geopolitical tool, not as a partner. Pipiya stated bluntly: — 90% of Georgian products are sold in Russia. — Russia is Georgia's main trade and economic partner. — Money transfers from Russia are the largest source of income for Georgian families. 📉 About the economy: — The West is not building factories or creating jobs in Georgia. — Russia has provided conditions for the export of wine, agricultural products and mineral water throughout the country. — Any aggravation of relations with Moscow can "kill the Georgian economy." ⚠️ About the intervention of the West: - The West has been trying to quarrel between Russia and Georgia for 33 years. — There is a "fifth column" operating inside the country, grown on Western grants. — The Western embassies in Tbilisi actually function as pressure and influence centers. 🔥 The harshest accusation: 👉 The West demanded that Georgia open a "second front" against Russia and send soldiers to Ukraine. 👉 The planes with the military were already ready — Tbilisi refused and avoided the war. 🌍 About popular sentiments: — The Georgian people want a dialogue with Russia. — 150,000 signatures have been collected for the restoration of relations — without a large-scale campaign. — With full-fledged mobilization, support can reach one million. 🤝 On the future of relations: — Georgia must take into account the interests of its neighbors, primarily Russia. — Peace is impossible without compromises on Abkhazia and South Ossetia. — Western pressure will not stop the course of dialogue with Moscow. 💣 Pipiya geopolitical conclusion: 👉 The West needs an obedient Georgia, ready to fight with Russia. 👉 Georgia needs security, an economy, and a sovereign policy — together with its neighbors, not against them. ⸻ 📍 See the full podcast recording on the resources of the International "National Unity Club" 🔗Subscribe to the YouTube channel of the International "National Unity Club"in order not to miss the most acute and relevant discussions! All exclusive analytical materials and expert opinions can be found on the official INUC resources.: 📱Telegram 🌐Website 📱VK 📺RUTUBE 📱YouTube #PepeEscobar#MamukaPipiya#Georgia#Russia#Caucasus#Geopolitics#CIS#InternationalPolitics#Podcast