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

Резултати

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

Пребарај: #web2

当前筛选 #web2清除筛选
Nomis | Onchain Reputation Protocol

@nomis_protocol · Post #552 · 25.11.2024 г., 15:51

🎟Get superpower with your Scores within Hybrid Savings—tons of tailored offers for Score holders and much more! Hybrid Savings is a unique aggregator of exclusive deals that combines #WEB2 & #WEB3 in one convenient format of a Telegram Mini App. There you may find the best promotions, promo codes, and discounts! 🤔How can you access Hybrid Savings’ promo codes and other offers? 1) Visit Hybrid Savings via Partners or ScoreFront pages 2) Go to “Wallet” page 3) Click “Connect TON Wallet” 4) Enjoy exclusive deals! 💎 Now you can also enjoy all the ScoreFront benefits via Hybrid Savings right in the app—check the integration yourself using the button below!

Hashtags

Nomis | Onchain Reputation Protocol

@nomis_protocol · Post #513 · 31.10.2024 г., 12:02

🎟Yo dawg I herd u like benefits so we put a benefit in yo Score so u can be rewarded while u rewarded!Meet dozens of rewarding offers in Hybrid Savings offer on ScoreFront💎 Hybrid Savings is a unique aggregator of exclusive deals that combines #WEB2 & #WEB3 in one convenient format of a Telegram Mini App. There you may find the best promotions, promo codes, and discounts! 🤔How can you access Hybrid Savings’ promo codes and other offers? 1) Visit Hybrid Savings via Partners or ScoreFront pages 2) Go to “Wallet” page 3) Click “Connect TON Wallet” 4) Enjoy exclusive deals! Explore the offer details and leverage you Score by accessing best deals using the button below!

Hashtags

DWF Labs Broadcast

@Dwflabs · Post #97 · 14.12.2022 г., 09:30

While blockchain-based technologies have many qualities that set them apart from other computing paradigms, one of their primary value propositions is the generation of cryptographic truth. Amidst the market uncertainty, cryptographic truth is taking on greater prominence in setting the stage for a new competitive battleground for #Web2 and #Web3 applications centered around the type of trust-minimized guarantees offered to users. Now, it is up to users, developers, entrepreneurs, and forward-looking companies to begin building and adopting trust-minimized, quality protocols and products with real long-term viability. As we continue to empower development, expansion and #innovation in this space, we recognise the importance of building a world powered by #truth. This is the new standard. Full read here.

DWF Labs Broadcast

@DWFLabs · Post #201 · 09.02.2023 г., 00:01

[2 Feb-8 Feb] DWF Crypto Snapshot Our latest #crypto report by our Managing Partner Andrei Grachev is up. In this week's round up 💫 💠 Bitcoin #NFTs? It’s More Likely Than You Think 💠 Federal Rate Hikes Fuel #Bitcoin Price Sentiments 💠Renewed NFT Interest Drives #Trading And Lending On Popular #Marketplaces 💠History Comes To Life As Woodstock Takes To The #Metaverse 💠Western Financial Institutions Push #Crypto Prices With Spot Inflows 💠Japan Aims To Revitalize Its #Economy With Web3 #Innovation 💠Major #Web2 Companies Starts Hiring To Bolster #Web3 Capability Full readhere. Missed last week's snapshot? Read here. Follow us on Medium here. Stay up-to-date on the latest DWF Labs updates: Website| Twitter | Linkedin | Telegram

Crypto M - Crypto News

@CryptoM · Post #64885 · 10.04.2026 г., 06:54

🚀 Tria Integrates Aptos Network for Enhanced Global Transactions Tria, a non-custodial financial operating system, has announced the integration of its global trading engine with the Aptos network. According to ChainCatcher, this integration allows over 500,000 users across more than 150 countries to directly access and trade Aptos assets. Users can now perform cross-chain exchanges and asset interactions within a single application without the need for cross-chain bridges. The collaboration aims to leverage Aptos's sub-second confirmation and parallel execution technology to provide users with a seamless transaction experience. Additionally, it seeks to further connect traditional finance, Web2, and on-chain infrastructure. #Tria#AptosNetwork#GlobalTransactions#NonCustodial#FinancialOperatingSystem#CrossChainExchanges#AssetInteractions#Blockchain#Web2#OnChainInfrastructure#Aptos#Crypto#DecentralizedFinance#Fintech#APT