@RWBY_Gallery · Post #20267 · 17.10.2024 г., 03:02
#Emerald @RWBY_Gallery🌹❄️🌑🔥
Hashtags
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
Пребарај: #emerald
@RWBY_Gallery · Post #20267 · 17.10.2024 г., 03:02
#Emerald @RWBY_Gallery🌹❄️🌑🔥
Hashtags
@RWBY_Gallery · Post #20216 · 05.10.2024 г., 14:18
#Emerald ( LuluSensei ) @RWBY_Gallery🌹❄️🌑🔥
Hashtags
@RWBY_Gallery · Post #19905 · 06.08.2024 г., 15:33
#Emerald tabletknight @RWBY_Gallery🌹❄️🌑🔥
Hashtags
@RWBY_Gallery · Post #18724 · 05.07.2024 г., 15:39
#Emerald Garbuzzzy @RWBY_Gallery🌹❄️🌑🔥
Hashtags
@RWBY_Gallery · Post #18624 · 23.06.2024 г., 02:21
#Emerald @RWBY_Gallery🌹❄️🌑🔥
Hashtags
@RWBY_Gallery · Post #18396 · 23.05.2024 г., 23:39
#Emerald NimbusDayDream @RWBY_Gallery🌹❄️🌑🔥
Hashtags
@RWBY_Gallery · Post #18342 · 19.05.2024 г., 01:25
#Emerald am_susk @RWBY_Gallery🌹❄️🌑🔥
Hashtags
@RWBY_Gallery · Post #18227 · 12.05.2024 г., 05:30
#Emerald Kimmy77 @RWBY_Gallery🌹❄️🌑🔥
Hashtags
@RWBY_Gallery · Post #18045 · 17.04.2024 г., 19:51
#Emerald tiatoonz @RWBY_Gallery🌹❄️🌑🔥
Hashtags
@RWBY_Gallery · Post #18260 · 14.05.2024 г., 21:18
#Emerald#Penny ar_jart @RWBY_Gallery🌹❄️🌑🔥
@RWBY_Gallery · Post #20185 · 28.09.2024 г., 14:26
#Neo#Cinder#Emerald nico-mo @RWBY_Gallery🌹❄️🌑🔥
@finsignal · Post #2856 · 11.02.2024 г., 16:40
What is ERC-404? The developers position ERC-404 as a new standard designed to combine the best qualities of interchangeable tokens (ERC-20) and NFT (ERC-721) ERC-404 aims to solve the problem of liquidity of NFT collections and expand the possibilities of their use in the DeFi ecosystem 📌 Interesting: The idea of creating a hybrid token format was submitted by the #Emerald project, which subsequently collapsed. Its founder claimed that he was able to combine interchangeable and non-exchangeable tokens, but, in fact, he simply organized a rug pull scheme. The #Pandora team picked up on this idea and refined it by introducing a new smart contract standard From a technical point of view, ERC-404 is a smart contract template that combines operations with ERC—721 and ERC-20 tokens The contract does not change the parameters of existing standards, but in a sense synchronizes transactions using different types of assets It is important to note that ERC-1155 already exists on the #Ethereum network — it also allows you to combine different types of tokens within a single smart contract, thus creating fractional (fractional) NFTs The key difference between ERC-1155 and ERC-404 is that the former concerns a specific unique NFT, and the new standard can be applied at the scale of the collection ERC-404 has not yet been recognized by either the Ethereum Foundation or the community The page on Ethereum.org the corresponding offer (EIP) is no longer available, in addition, this smart contract template has not been audited, so the question of its vulnerability remains open Pandora is the first and so far the largest project using ERC-404, so it is too early to talk about an established standard — it is possible that in subsequent implementations ERC-404 will receive new features and mechanisms.