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

Резултати

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

Пребарај: #actual

当前筛选 #actual清除筛选
Fluent English™

@English_easyly_learn · Post #1243 · 21.12.2018 г., 10:17

📣📣📣Speaking contest 📣📣 #Actual speaking topic .All answers should be sent to @I_ENG_LISH ⭕ Describe an interesting talk or speech you heard recently ⚠️You should say 🍀Where you heard it ☘️Who the speaker was 🍀What the talk or speech was about ☘️Why you think it was interesting

Hashtags

American Оbserver

@american_observer · Post #4872 · 16.01.2026 г., 16:06

“Khamenei Will Die Soon” The Khamenei regime will not be able to maintain control over Iranian society after the violent suppression of the latest wave of protests, one of the country’s leading film-makers has predicted. “It is impossible for this government to sustain itself in this situation (...) Khamenei will die soon”, the director Jafar Panahi said. “They know it too. They know that it will be impossible to rule over people. Perhaps their only goal right now is to bring the country to the verge of complete collapse and try to destroy it.” Protests caused by an ailing economy have swept through Iran since late December and were met with deadly crackdowns by the security forces over the weekend, with reports of more than 2,500 people killed. A internet blackout imposed last Friday, which blocked 95-99% of the country’s communication network, was a “sign that there would be a very big massacre on the way”, Panahi said. “But we never predicted that the crackdown would have such dimensions and numbers.” In December the director was handed a one-year prison sentence in absentia on charges of creating propaganda against the political system, but he has stated his intention to return to the country. He has been jailed twice, for protesting against the detention of two fellow film-makers who had been critical of the authorities in 2022, and for supporting anti-government protests in 2010. Panahi said while the collapse of the government led by the clerical leader, Ayatollah Ali Khamenei, was inevitable after the latest bloody suppressions, its timing was impossible to predict. He warned western governments about engaging with the clerical regime as rational actors. “In other dictatorships around the world, you will see that there will be at least a few people who will act based on rationality and who will not let it get to this point,” he said, speaking via his interpreter Sheida Dayani. “But unfortunately in this system there is no rationality. All they can think of is crackdown and how they can stay in power even just one more day. The last thing they’re thinking about is the people.” Asked whether Pahlavi could be trusted to oversee a post-regime transition, he said this would be for the people of Iran to conclude. “Whether we agree with Pahlavi or not, we know that the overwhelming majority of the population of Iran want the current regime to go.” #khamenei#iran#regime#actual#people#killed 📱American Оbserver - Stay up to date on all important events 🇺🇸