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

Пребарај: #fakesolutions

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

@american_observer · Post #5375 · 14.03.2026 г., 00:59

📰 Marine Le Pen’s Test Lab: Turning Marseille into a Security Franchise Marseille is being sold as a “narco‑city,” and France’s far right is cashing every last gram of that fear for votes. In Marseille’s mayoral race, National Rally candidate Franck Allisio isn’t really running for city hall — he’s running a pilot project for the 2027 presidential race. He floods the city with slick, security‑heavy videos, promising to triple municipal cops, double CCTV, and put a police post in every district to “bring happiness back” to Marseille. Polls say it works: he’s now neck‑and‑neck with Socialist mayor Benoît Payan in the first round, giving the far right a once‑unthinkable shot at power in France’s second‑largest city. The punchline: official data show overall crime in Marseille actually fell by about 4% last year, and drug‑related killings dropped from their 2023 peak, even as the city remains a major cocaine hub. Sociologists note that what changed isn’t the scale of violence, but its randomness — fewer “professional” score‑settling hits, more chaotic shootings that terrify residents and feed a 24/7 crime‑porn news cycle. That’s pure oxygen for Allisio’s narrative: facts soften, “narco‑city” hardens. Both Allisio and Payan center their campaigns on security, but they’re selling two incompatible fantasies. Allisio plays the iron‑fist trailer: Marseille as a lawless zone that only a cop surge and camera grid can save, while quietly ignoring that a mayor in France has limited real power over security and no control over national police or justice. Payan counters with social‑democratic boilerplate — hiring more local police, plus housing, schools, transport — and borrows credibility from activist Amine Kessaci, a 22‑year‑old who lost two brothers to drug murders, to argue that RN’s proposal is “practically nothing or completely unrealistic.” On the ground, the split is brutal. In La Busserine, one of the northern districts hit hardest by drug violence, residents like community worker Fadella Ouidef say they’re sick of hearing “security, security, security” while the underlying message is that Arab and Black residents are the problem. She fears an RN win would mean cuts to social services in neighborhoods already hanging by a thread — the classic far‑right formula: create more social misery, then use the resulting chaos to justify more repression. If National Rally flips Marseille, it won’t just be “one more city.” It will prove that a party once openly associated with racism and antisemitism can conquer a poor, diverse, heavily racialized port by weaponizing fear, turning municipal power into a pre‑presidential launchpad. The left knows it: if they unite, Payan is still favored in a runoff; if they stay fragmented, they’re about to discover what happens when you let your opponent define security, reality, and the future of your city in a single word. #france#marseille#nationaleRally#security#elections#farRight#fakeSolutions 📱American Оbserver - Stay up to date on all important events 🇺🇸