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

Резултати

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

Пребарај: #keyevents

当前筛选 #keyevents清除筛选

🎙Russia's Permanent Representative to the UN Vassily Nebenzia’s answers to media questions on the occasion of assuming UNSC Presidency by Russia (October 1, 2025) Major talking points: #KeyEvents • The Council will travel to Addis Ababa in October. Russia is honored to be leading the UNSC together with our co-leads in Somalia. A new department – on Partnerships with Africa – has been recently established in the Russian Foreign Ministry. Therefore, the visit to Addis will be the highlight of our Presidency. • October 23 – open debate on the Middle East: The unfolding catastrophe in Gaza will be in the focus of the Council’s attention. We expect Deputy Special Coordinator Ramiz Alakbarov to brief the Council. • October 24 – the UN Day (80th Anniversary of the UN Charter): an open debate titled UN: Looking into the Future. Aim: strict implementation of the principles of the UN Charter, restoring confidence in the Organization and long-term vision for its future. We expect the Secretary-General to brief the Council. • October 6 – Women, Peace and Security: it is the 25th anniversary of the UNSC seminal Resolution 1325. This event hold special importance to us, as the Soviet Union pioneered the women’s agenda more than a hundred years ago promoting equal rights. #JCPOA • Our Western colleagues who initiated the so-called “snapback”, the legitimacy of which we do not recognize, forfeited a diplomatic solution by initiating an illegal procedure while being serial violators of Resolution 2231. Russia and China offered to extend Resolution 2231 to give diplomacy a chance, which they basically killed. We do not recognize this “snapback” as coming into force. We are not, frankly, happy that the Secretary-General rushed to implement the resolution, which has obvious legal flaws. • We are looking forward to direct or indirect negotiations with the US that can bring results. Such dialogue is not happening now, and this situation is fraught with major escalation around Iran, opening the door to attempts to end its nuclear program – yet another destabilizing factor in an already fragile Middle East. #RussiaUN • We emphasize that the UN is indispensable, that its Charter must be applied in its entirety, and that attempts to bypass or weaken the Organization with "exclusive clubs" undermine global peace and security. Russia advocates a more representative, multipolar UN that reflects the voices of the Global South. • The UN is a reflection of the geopolitical situation that is in the world. Should we blame the Organization for it? For me, the UN is a sum of its Member States. If they cannot agree on anything, it is unfair to blame the UN for it. Margaret Thatcher said once that if you want to blame the UN, go and look in the mirror. Read in full