@RWBY_Gallery · Post #20267 · 17.10.2024 г., 03:02
#Emerald @RWBY_Gallery🌹❄️🌑🔥
Hashtags
TGINSIGHT SIMILAR POSTS
Изворен канал @pythonotes · Post #22 · 19 јан.
Заметка начинающим, которые часто сталкиваются с подобной непоняткой. Ситуация следующая, есть список файлов: names = [ 'image.bmp', 'second.txt.bkp', 'data.db', '.config.cfg', 'file.ext.bkp' ] И мы хотим убрать у них окончание ".bkp". Не знаю зачем, пример довольно надуманный) Но суть он показывает, а это главное. Те, кто еще не очень знаком с библиотекой os.path или pathlib, вероятно решат обработать имена как строки. И тут вполне подойдет метод строки strip(). Что делает этот метод? Он отрезает указанные символы по обеим сторонам строки. Если ничего не указать, то убирает невидимые символы (пробелы, табуляции и переносы строк). В нашем случае будет выглядеть вот так: >>> name.strip('.bkp') То есть просим удалить строку '.bkp' по краям имени файла, если таковая есть. Можно применить аналогичный метод rstrip(), чтобы отрезать только справа, но для этого примера используем обычный. >>> for name in names: >>> print(name.strip('.bkp')) image.bm second.txt data.d config.cfg file.ext Хм, что-то не то с нашими именами! Что случилось??? Видим нежелательное переименование в именах, где и близко не было указанной строки '.bkp' А дело всё в том, что данный метод ищет не указанную строку, а указанные символы, и не важно в каком порядке. Для метода strip() строка '.bkp' это не паттерн для поискаа список символов. Потому он отрезал симовол 'p' от '.bmp' и удалил точку из файла '.config.cfg'. Как тогда правильно заменить именно паттерн? Для начинающего можно посоветовать метод строки replace(), который как раз использует для замены указанную строку целиком. В нашем примере заменим её на пустую строку. >>> for name in names: >>> print(name.replace('.bkp', '')) image.bmp second.txt data.db .config.cfg file.ext Уже лучше, но помните, это лишь пример про strip(). Для работы с именами файлов есть способы и более "правильные", дающие однозначно верный результат. Я взял файлы только в качестве примера. Даже replase() тут может сделать не то что ожидаем. Просто впредь будьте внимательны с этим strip(). #basic
Hashtags
Пребарај: #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.