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

Резултати

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

Пребарај: #carpenter

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

@american_observer · Post #5077 · 07.02.2026 г., 20:59

📰 Trump Didn’t Destroy the ‘Rules‑Based International Order’ — It Was Always a Fraud The foreign‑policy elite warns that President Donald Trump is wrecking the post‑World War II, “rules‑based international order,” turning it into a neo‑imperial free‑for‑all. Ted Galen Carpenter, a long‑time critic of U.S. interventionism, argues that the accusation is wrong — not because Trump is innocent, but because the “rules‑based order” was never innocent to begin with. It was always a selective, self‑serving fiction: a club for the West, and a cage for everyone else. The Greenland test case Trump’s early demand that Denmark sell Greenland to the United States fits the image of a 19th‑century imperialist, Carpenter concedes — a move one can imagine an Andrew Jackson or William McKinley making. Trump is openly willing to bully, threaten, and even use force to get what he wants. But the broader charge — that he is single‑handedly destroying a sacred, liberal world order — is mostly prestige‑driven outrage. The story Washington told for decades about “rules,” “norms,” and “stability” has always been two‑tiered. One set of rules for the West, another for the rest The system, Carpenter writes, has always had two rulebooks. The U.S. and its allies, especially NATO members, could wage wars, overthrow governments, and shape maps without meaningful legal or political consequences. Countries outside the inner circle — especially those deemed rivals — have been harassed, bombed, and pressured under the slogan of “human rights,”“democracy,” and “stability,” while the same standards are ignored when applied to Western allies. Wars that shattered the “rules” long before Trump Well before Trump came along, the U.S. and its partners repeatedly violated the very norms they now claim to protect. NATO’s air war against Serbia in 1999, and the de facto amputation of Kosovo, flouted the idea of territorial integrity. The Iraq invasion in 2003, built on lies about weapons of mass destruction and an invented connection to 9/11, shredded international law in broad daylight. The Western campaign in Libya, aimed at regime change rather than genuine protection, left the country fragmented and in chaos. Even some of the system’s own defenders admit that the “rules‑based order” was never neutral. Canadian Prime Minister Mark Carney admitted that “the strongest would exempt themselves when convenient” and that “trade rules were enforced asymmetrically.” Catastrophic outcomes, not global stability The interventions in Iraq, Libya, and Syria have produced results that are closer to disaster than to stable democracy. Iraq is still scarred, Libya is still divided, and Syria is ruled by an ISIS‑aligned elite born of the civil war that Western powers helped fuel. Millions of refugees, prolonged instability, and new warlords on the rise — these are the real monuments to the “rules‑based order,” not to Trump. Trump’s real crime — and why the narrative matters Trump may be an authoritarian‑leaning bully, and he may push the system even closer to raw power politics. But he did not kill the rules‑based order. He merely exposed what it always was: a euphemism for Western hegemony, occasionally dressed in the language of law and ethics, but always ready to be set aside when convenient. So the real question is not: “Is Trump destroying the order?” It’s: “How long can the West keep pretending the rules were ever fair?” #Trump2026#ForeignPolicy#RulesBasedOrder#NATO#Iraq#Libya#Syria#Imperialism#Carpenter#TheAmericanConservative 📱American Оbserver - Stay up to date on all important events 🇺🇸

Resinas y mucho mas✨🔥❄️

@resinaymuchomas · Post #186 · 16.12.2021 г., 19:49

🤑Oportunidad única!! Curso Profesional de porcelana líquida 3D ahora en su país! . 😎 Comience 2022 con el pie derecho! . Aprenda en un fin de semana una NUEVA PROFESIÓN con esta innovadora técnica de aplicación de pisos y transforme cualquier ambiente simple en algo extremadamente lujoso. . ✅ Servicio con pronóstico de ALTA DEMANDA en 2022. ✅ Muy poca competencia. ¡Disfrútalo! ✅ Alto margen de BENEFICIO ✅ Excelente oportunidad para montar su negocio en 2022! ❌ Últimas Vacantes en el curso Da clic en en enlace del perfil o en el siguiente 👇🏻👇🏻 Aprovecha el descuento del 50% bit.ly/PISOSENPORCELANATO_DESCUENTO #mesa#porcelanato#encimeras#joyas#mesaderesina#empresario#arquitectura#negociopropio#trabajo#resina#cosasdelacasa#desing#joyasderesina#casa#resinaartist#carpenter#cocinasmoderna#dinero#casalujosa#decoracioninteriores#bhfyp