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

Пребарај: #lummis

当前筛选 #lummis清除筛选
Venture Village Wall 🦄

@venturevillagewall · Post #3961 · 23.01.2025 г., 16:00

Senator Lummis Chairs Digital Assets Committee Senator Cynthia Lummis has been elected as chair of the Senate Banking Subcommittee on Digital Assets. Known for her strong support of #Bitcoin and blockchain technology, she aims to urgently pass laws creating a Strategic Bitcoin Reserve. This elevation marks a significant event for the crypto industry. The Senate Banking Committee is set to officially vote on this appointment tomorrow at 10 AM EST. Links: - Leviathan News - Watcher Guru - Fox Business #Lummis#DigitalAssets#Crypto#Bitcoin#Blockchain#USSenate#BitcoinReserve#VC#Regulation#Finance#Investment#Economy#Innovation

Venture Village Wall 🦄

@venturevillagewall · Post #4327 · 07.03.2025 г., 04:00

Trump Announces U.S. Bitcoin Strategic Reserve 🚨 President Trump signs an Executive Order to create a Strategic Reserve of Bitcoin. Key points: - Executive action allows acquisition of Bitcoin only through confiscated funds. - Full audit of digital assets held by the government mandated. - Coinbase CEO believes G20 nations will follow U.S. leadership in Bitcoin reserves. - Senator Lummis claims U.S. is becoming the Bitcoin capital of the world. Market impact: $225M liquidated in crypto markets shortly after the news. For more details, see the post here: Leviathan News #Bitcoin#Crypto#VC#US#Trump#Lummis#ExecutiveOrder#Reserve#Blockchain#DigitalAssets#CryptoMarket#G20#Coinbase#Regulation#XRP#ADA#ETH#SOL

Venture Village Wall 🦄

@venturevillagewall · Post #3834 · 10.01.2025 г., 01:00

Coinbase Subpoenaed in Polymarket Inquiry Coinbase confirms it has received a subpoena related to the CFTC's investigation into Polymarket. This development raises questions about regulatory scrutiny in the crypto space. *Senator Cynthia Lummis is expected to head a new Senate committee focused on digital assets, which may influence future legislation.* Read more: Velo News #Coinbase#CFTC#Polymarket#Crypto#Senate#DigitalAssets#Regulation#Blockchain#USPolitics#Lummis#Finance#Investing#Market#Law#Technology#Innovation#Compliance#Research#Velo#News

Venture Village Wall 🦄

@venturevillagewall · Post #4061 · 03.02.2025 г., 22:00

Major Bitcoin Moves & New Token Launch 🔹 Bitcoin reaches $101,898. 🔹 Leviathan’s Legal-Squid-in-Residence launches new token on flaunch.gg. 5% of the supply locked with GAIB BORG. 🔹 150,000,000 #USDT transferred to unknown wallet (worth $150,040,874). 🔹 59,000,000 #USDC minted at USDC Treasury. 🔹 Senator Lummis calls President Trump’s sovereign wealth fund order a '*₿ig deal*'. 🔹 Trump reportedly purchases 86,000 ETH for $220 million amidst market fears. Stay updated for more! #Bitcoin#USDT#USDC#Crypto#Finance#WealthFund#Lummis#Trump#ETH#TokenLaunch#GAIBBORG#Investment#WhaleAlert#MarketNews#SovereignWealth#Ethereum#Flaunch#Leviathan#TraderAlert#CryptoMarket