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

Резултати

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

Пребарај: #globalimpact

当前筛选 #globalimpact清除筛选
​NO Kings ​🚫👑

@No_king_No_King · Post #48 · 07.04.2026 г., 14:18

🚨 THE UNVARNISHED TRUTH | DON WINSLOW "IF THERE WAS ANY DOUBT LEFT — AND I CAN'T IMAGINE HOW THERE COULD BE — THE NEXT FEW WEEKS WILL REVEAL EVEN TO THE MOST DEVOUT FOLLOWERS — HOW DANGEROUSLY INCOMPETENT TRUMP AND HIS BAND OF FOOLS ARE. THE WORLD WILL PAY THE COST FOR THE 77 MILLION PEOPLE WHO VOTED FOR TRUMP." — Don Winslow ⚠️The coming weeks will be a wake-up call for everyone. #Politics#Trump#GlobalImpact#DonWinslow#BreakingNews ✈️t.me/No_king_No_King

Crypto M - Crypto News

@CryptoM · Post #64784 · 09.04.2026 г., 23:06

🚀 Iran Conflict Spurs Fuel Scramble in Western Australia A farmer in Western Australia was engaged in sports with colleagues when news of the Iran war emerged. Bloomberg posted on X that within minutes, the group was on their phones, urgently seeking to secure fuel supplies. The sudden geopolitical tension prompted immediate concerns over energy resources, highlighting the global impact of regional conflicts. #IranConflict#FuelScramble#WesternAustralia#GeopoliticalTension#EnergyResources#GlobalImpact#RegionalConflicts

AloqaVentures

@AloqaVentures · Post #250 · 23.01.2024 г., 10:54

😀MohirDev startapi " IOE's 4th Migration Challenge" tanlovida! ⚡️ MohirDev jamoasi Seedstars bilan hamkorlikda nufuzli "IOE's 4th Migration Challenge" tanlovining final bosqichida ishtirok etmoqda. ➡️ Startap asoschilari Jeneva shahrida bo'lib o'tayotgan GFMD 2024 sammitida global miqyosdagi innovatorlar bilan birgalikda o'zlarining eng so'nggi texnologik yechimlarini namoyish etishadi. 🔗#Mohirdev#MigrationChallenge#Innovation#GlobalImpact#GFMD2024#IOE#Seedstars#TechForGood Batafsil: https://lnkd.in/dmYHBFW3

Freedom Flotilla Coalition

@FFC_official_channel · Post #224 · 31.08.2024 г., 23:58

This election is not just about what happens within U.S. borders—it’s about the lives of millions around the globe. When you vote, you’re making a statement about where America stands on human rights. History has shown us that you cannot negotiate with leaders who offer nothing but empty promises. Kamala Harris herself said, "Never let anyone tell you who you are. Show them who you are." Well, the Biden-Harris administration has shown us who they are. For ten months, they’ve done nothing but fund the annihilation of Gaza and the West Bank. We cannot accept these empty words when hundreds of thousands of lives are at risk. It’s time to demand real action, not just lip service. Sign the petition to enact an arms embargo on Israel, spread the truth in your community, and mobilize for the sake of humanity. Take Action Now: 🖋️ Sign the Petition: Not Another Bomb! Demand an arms embargo to stop the genocide (in our stories) 📰 Stay Informed: Join the Uncommitted Movement and tell Kamala Harris to stand on the right side of history. Sign up for updates. 🗣️ Spread the Word: Distribute flyers, educate your community, and support candidates who truly stand for human rights. #KillerKamala#BidenHarris#USElections#DNC#ActForGaza#EndTheOccupation#NoMoreEmptyPromises#FreeGaza#FreePalestine#PermanentCeasefire#UNSecurityCouncil#GlobalImpact#FFC#FreedomFlotilla