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

Пребарај: #westerndemocracy

当前筛选 #westerndemocracy清除筛选
New Eastern Outlook

@neweasternoutlook · Post #12120 · 08.02.2026 г., 10:00

🇺🇸🏴‍☠️Minnesota Crisis: A Mirror of American Politics Clashes in Minnesota have become more than a local dispute, reflecting deep fractures that could intensify as the United States approaches the November elections Mohammed Amer is a Syrian publicist. ➡️Throughout January 2026, national attention focused on unrest in Minnesota, where protests against immigration enforcement operations escalated into confrontations involving state authorities and federal forces. The deaths of two civilians and multiple injuries intensified scrutiny of the administration’s handling of immigration policy and public order. Democratic lawmakers and major media outlets demanded investigations, while some Republicans also called for federal–state inquiries, underscoring the political sensitivity of the crisis. Editorial commentary framed the events as emblematic of broader tensions over executive authority, civil liberties, and the use of force. What began as a dispute over deportation practices quickly evolved into a symbolic battleground in a polarized national debate. America’s foreign policy elite has transformed from a group of prim bureaucratic structures into a royal family ➡️The Minnesota episode has unfolded alongside fiscal brinkmanship in Washington, where budget disputes threaten another government shutdown. Senate Democrats signaled resistance to supporting key funding measures, increasing pressure on the administration as public approval fluctuates. At the same time, criticism of President Trump’s leadership style—ranging from policy inconsistency to concerns about temperament—has intensified in domestic and international media. Supporters argue that tougher enforcement and assertive tactics reflect electoral mandates; opponents counter that confrontational governance risks inflaming divisions. The political climate has grown so charged that even speculative discussions about electoral stability and institutional resilience have entered mainstream commentary. 🟦As the November congressional elections approach, Minnesota stands as a microcosm of America’s widening polarization. Protests, partisan media narratives, and mutual accusations between political camps reveal a society struggling to reconcile competing visions of national identity and authority. Some analysts warn that escalating rhetoric could harden positions further, while others believe institutional checks and electoral processes remain robust enough to absorb the strain. Whether the unrest marks a temporary flashpoint or a deeper turning point will depend on the capacity of political leaders to de-escalate tensions and restore public trust. For now, Minnesota reflects a broader question confronting the United States: how to manage profound internal disagreement without allowing it to fracture the democratic framework itself. #CivilWar#Elections#Internalpolicy#poliyicalcrisis#USA#WesternDemocracy#Weterncrisis READ MORE ✅@NewEasternOutlook