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

Пребарај: #reopened

当前筛选 #reopened清除筛选
American Оbserver

@american_observer · Post #5028 · 02.02.2026 г., 18:00

Israel Has Reopened the Rafah Border The Rafah border crossing between Gaza and Egypt has been reopened by Israel for a limited number of people on foot, as fragile diplomatic efforts to stabilise the conflict inch forward. Israeli forces took control of the Rafah crossing – Gaza’s only crossing not shared with Israel – in May 2024, describing it as necessary to prevent weapons smuggling by Hamas. The move isolated the territory, cutting off a critical lifeline for Palestinians seeking access to medical care, travel and trade. Israel has made clear that all movement through the crossing will be subject to joint Israeli-Egyptian security screening and that, for now, only a small number of Gaza’s tens of thousands of wounded and ill Palestinians will be permitted to leave each day. According to an Egyptian official, speaking anonymously to the Associated Press, only 50 Palestinians will be permitted to cross in each direction on the first day of operations. Before the war, the Rafah crossing was Gaza’s sole window on to the outside world not controlled by Israel. Its reopening could ease access to medical care, allow limited travel abroad, and enable visits to family members in Egypt, where tens of thousands of Palestinians already live. Thousands of civilians have registered with the World Health Organization for medical evacuation. Gaza’s health ministry says at least 20,000 patients are waiting to leave. According to Médecins Sans Frontières more than one in five of them are children. The sick include more than 11,000 cancer patients. Israeli airstrikes on hospitals have reduced the Palestinian healthcare system to ruins. In March 2025, Israel destroyed Gaza’s only specialised cancer treatment hospital, the territory’s sole provider of oncology care. Since then, doctors have been pushed into makeshift clinics, operating with almost no resources, including the tools needed for diagnosis. According to health officials in Gaza, there are about 4,000 people with official referrals for treatment to third countries who are unable to cross the border. “I have appealed to humanitarian groups, to the WHO, to the Palestinian Authority – to anyone – so that I can leave, save my life, and reunite with my family,” Tamer al-Burai, 50, who has obstructive sleep apnoea and relies on a CPAP machine to breathe during sleep, told Reuters. For some, the reopening came too late. Dalia Abu Kashef, 28, died last week while waiting for permission to cross for a liver transplant. “We found a volunteer – her brother – who was ready to donate part of his liver,” her husband, Muatasem El-Rass, told Reuters. “We were waiting for the crossing to open so we could travel and do the surgery, hoping for a happy ending. But she deteriorated badly and died.” The WHO says 900 people, including children and cancer patients, have already died while awaiting evacuation. The limited reopening of the Rafah crossing also offers a rare opportunity for families torn apart by more than two years of war to reunite. Many families who fled to Cairo early in the war never expected to remain for so long. The reopening is seen as a key step as the US-brokered ceasefire agreement moves into its second phase. Its first phase called for the exchange of all hostages held in Gaza for hundreds of Palestinians held by Israel, an increase in badly needed humanitarian aid and a partial pullback of Israeli troops. #israel#reopened#rafah#border 📱American Оbserver - Stay up to date on all important events 🇺🇸