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 слични објави

Пребарај: #binancelabs

当前筛选 #binancelabs清除筛选

Binance Labs Invests in Pluto Studio! #BinanceLabs has led an investment round for Pluto Studio, the #GameFi publishing platform that launched Web3 Game Catizen😼 Catizen is a groundbreaking gaming bot on Telegram that seamlessly integrates Telegram with the #TON blockchain. Today Catizen announced the news about airdrop: Decrypt reports that Pluto Studio has secured funding from The Open Platform (TOP) as they prepare for a TON token airdrop. Catizen has now reached 25 million players and will airdrop 43% of its total token supply on the TON blockchain. Also today Pavel Durov announced the greeting post: 🐱 Catizen is a mini game on Telegram with over 26 million players. The game has already earned $16 million (!) from in-app purchases and donated 1% of it to rescue stray cats 😱 😄 Catizen introduced millions of people to blockchain, because it uses TON-based smart contracts for its in-game rewards. Their team also built tools for other developers to easily launch their games on Telegram and TON 🤑 says Pavel Durov So many good news for one day! 😻 ❤️ Let's keep playing for the airdrop🪂, Heal the world! 🌍

🎉Catizen x Zircuit Launchpool is Live We're excited to announced launch Zircuit (ZRC) as the inaugural project on the Catizen Launchpool!🎆🪙 How to Earn ZRC? 💰 Stake CATI and Cats to Earn ZRC: Zircuit is an AI-secured, Zero-Knowledge Layer 2 solution, fully #EVM-compatible, and supported by #BinanceLabs, #Pantera, #DragonflyCapital, among others. With $1.8B in TVL and a new liquidity hub, early adopters are in for a rewarding journey! Launchpool Details: • Period: 2024-10-28 00:00 (UTC) to 2024-11-04 00:00 (UTC) • Token Name: $ZRC • Total Supply: 10,000,000,000 ZRC • Token Rewards: ≈$1,500,000 in ZRC • Launchpool Allocation: 8,333,333 ZRC Pool Information 🪙CATI Pool: • Reward Proportion: 85% • Reward Amount: $1,275,000 in ZRC • Stake Range: 1 to 2000 CATI • Settlement: Every hour based on staked CATI share 😺Cat Pool: • Reward Proportion: 15% • Reward Amount: $225,000 in ZRC • Eligibility: Cats above level 300 only • Settlement: Hourly, with levels converted to USD for calculations 🐾Don’t miss out on this incredible chance to grow your rewards with Zircuit! This is just the beginning of their ambitious plan to enhance CATI token value✨ #TON#CATI#Pool#Zircuit