TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

TGINSIGHT SIMILAR POSTS

Најди сличен содржај

Изворен канал @pythonotes · Post #241 · 5 мај

Можно ли в Python создавать бинарные файлы? Конечно можно. Для этого в Python есть следующие инструменты: ▫️ тип данных bytes и bytearray ▫️ открытие файла в режиме wb (write binary) или rb (read binary) ▫️ модуль struct Про модуль struct поговорим в первую очередь. Файл в формате JSON или Yaml внутри себя содержит разметку данных. Всегда можно определить где список начался а где закончился. Где записана строка а где словарь. То есть формат записи данных содержит в себе элементы разметки данных. В binary-файле данные не имеют визуальной разметки. Это просто байты, записанные один за другим. Правила записи и чтения находятся вне файла. Модуль struct как раз и помогает с организацией данных в таком файле с помощью определения форматов записи для разных частей файла. Модуль struct преобразует Python-объекты в массив байт, готовый к записи в файл и имеющий определённый вид. Для этого всегда следует указывать формат преобразования (или, как оно здесь называется - запаковки). Формат нужен для того, чтобы выделить достаточное количество байт для записи конкретного типа объекта. В последствии с помощью того же формата будет производиться чтение. При этом следует помнить что мы говорим о типах языка С а не Python. Именно формат определяет, что записано в конкретном месте файла, число, строка или что-то еще. Вот какие токены формата у нас есть. Помимо этого, первым символом можно указать порядок байтов. На разных системах одни и те же типы данных могут записываться по-разному, поэтому желательно указать конкретный способ из доступных. Если этого не сделать, то используется символ '@', то есть нативный для текущей системы. В строке формата мы пишем в каком порядке и какие типы собираемся преобразовать в байты. Запакуем в байты простое число, токен "i". >>> import struct >>> struct.pack('=i', 10) b'\n\x00\x00\x00' Теперь несколько float, при этом нужно передавать элементы не массивом а последовательностью аргументов. >>> struct.pack('=fff', 1.0, 2.5, 4.1) b'\x00\x00\x80?\x00\x00 @33\x83@' Вместо нескольких токенов можно просто указать нужное количество элементов перед одним токеном, результат будет тот же. >>> struct.pack('=3f', 1.0, 2.5, 4.1) b'\x00\x00\x80?\x00\x00 @33\x83@' Теперь запакуем разные типы >>> data = struct.pack('=fiQ', 1.0, 4, 100500) я запаковал типы float, int и unsigned long long (очень большой int, на 8 байт) b'\x00\x00\x80?\x04\x00\x00...' Распаковка происходит аналогично, но нужно указать тот же формат, который использовался при запаковке. Результат возвращается всегда в виде кортежа. >>> struct.unpack('=fiQ', data) (1.0, 4, 100500) Как видите, ничего страшного! #lib#basic

Hashtags

Резултати

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

Пребарај: #dump

当前筛选 #dump清除筛选
SpotOnChain | Announcement

@spotonchain · Post #780 · 13.04.2024 г., 01:44

#FTX and #Alameda Research liquidators truly have a knack for choosing their exit points! Just 8 hours ago, they deposited another 2,500 $ETH ($8.56M) into #Coinbase at ~$3,426, right before the recent #dump! Since Mar 1, FTX and Alameda have deposited 15,850 $ETH ($58M) into CEX at ~$3,659, and dramatic price changes tended to follow afterward (see pic 👆). Follow @spotonchain and set alerts for FTX and Alameda to know as soon as they move more $ETH again now: 1. FTX 1. FTX: https://platform.spotonchain.ai/en/entity/354 2. Alameda Research: https://platform.spotonchain.ai/en/entity/79

⚠️🎱 ANON is scam. Unveiling the situation Another scam has surfaced, this time involving a project with a million-strong audience and a participant in the Open League. Background ANON started in the private 8club community for anonymous number holders, quickly raising funds in just three hours. Initially supported by Sasha P., the project gained traction with promises of utility but failed to deliver. ANON League To expand its audience, ANON launched its own league, inviting 83 channels to compete. However, after the season ended and the winners were announced, prize payments were never made. Sasha P. distanced himself, claiming he was never or anymore involved with the project. The ANON treasury was returned to him, and a DAO vote returned it to investors. Despite this, channels invested significant amounts into the league, hosting contests and creating content, with no compensation due to the missing treasury funds. More details here. Thank you all and goodbye Channels that completed tasks and invested heavily were left with unpaid rewards. Efforts to resolve the issue with the project's former and current leadership have failed. The community, including channel administrators, has contacted TON Foundation for help, but no solutions have been provided. Today, we, along with others, declare that @anon_club, @AnonEarnBot, @anonopen, @b_user, and @Mr_Domovoi are SCAMS for failing to meet their obligations, leaving many people financially deceived. If you agree with this assessment, feel free to share this post with your friends. 🩸Rest in peace ANON #TON#ANON#SCAM#Dump#RIP

Elf Crypto VIP

@elfcryptovip · Post #12659 · 11.05.2026 г., 10:34

📍 List of abbreviations commonly used in cryptocurrency trading: #ALTCOIN = Alternate cryptocurrency except bitcoin #SHITCOIN = A coin with no potential value or use #BEAR | #BEARISH = Negative price movement #BULL | #BULLISH = Positive price movement #LONG = Margin buy position #SHORT = Margin sell position #BTFD = Buy The Fucking Dip #DILDO = Long green or red candles 😆 #DYOR = Do Your Own Research #FA = Fundamental Analysis #TA = Technical Analysis #FOMO = Fear Of Missing Out #JOMO = Joy Of Missing Out #FUD = Fear Uncertainty & Doubt #HODL = Hold a position #MCAP = Market Capitalization #MOON = Continuous upward movement of price #OTC = Over The Counter #PUMP = Upward price movement #DUMP = To sell off a coin #REKT = When you have a bad loss #WHALE = Very wealthy trader/Market mover #AMA = Ask me anything #ATH = All Time High #ATL = All Time Low #DLT = Distributed ledger technology #IMO = In My Opinion #LAMBO = Lambo is symbol that becomes an elusive goal for most investors #NOOB = A person who is inexperienced #SAFU = Secure Asset Funds for Users #SHILL = Holder of altcoin who just wants to promote it for his own benefit ✅@ElfCryptoVIP