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

Резултати

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

Пребарај: #sanfrancisco

当前筛选 #sanfrancisco清除筛选

Полный ролик о посещении мною мега крутого авиа шоу Blue Angels выпущу в ближайшие дни на моем Ютуб канале 👉КМА в США #подпишись#blueangels#sanfrancisco

我以为自己等到盛大开幕周末后的周二很聪明——我以为不会有人排队,甚至队伍很小……但结果并非如此。我在外面晒了一个小时。我喜欢那些定制雕像。我找到了一些喜欢的衣服,而且价格在任天堂来说也还算合理,但我只买了一个皮克曼徽章和一个马力欧背包。#Nintendo#任天堂#sanfrancisco#旧金山#马里奥#购物#日常

Crypto M - Crypto News

@CryptoM · Post #65383 · 13.04.2026 г., 03:28

🚀 OpenAI Founder Altman's Residence Targeted Again in San Francisco According to Jin10, local media 'The San Francisco Standard' reported that the residence of OpenAI founder Sam Altman was reportedly targeted again on Sunday morning. This incident occurred just two days after a 20-year-old man allegedly threw a Molotov cocktail at the property. The San Francisco Police Department announced the arrest of two suspects, 25-year-old Amanda Tom and 23-year-old Muhammad Tariq Hussain, on charges of negligent discharge of a firearm. According to the police's preliminary report, at 1:40 a.m. on Sunday, a Honda sedan with two occupants stopped in front of Altman's residence shortly after passing by. The passenger allegedly extended their hand out of the window and fired a shot at the side of the residence facing Lombard Street. Both OpenAI and the San Francisco Police Department have not responded to requests for further comments. #OpenAI#SamAltman#SanFrancisco#Shooting#Crime#Police#Incident

Crypto M - Crypto News

@CryptoM · Post #65063 · 10.04.2026 г., 17:48

🚀 OpenAI CEO Sam Altman's Home Targeted in Molotov Cocktail Attack San Francisco police arrested a man on Friday after he allegedly threw a Molotov cocktail at the residence of OpenAI Chief Executive Officer Sam Altman. Bloomberg posted on X that no injuries were reported in the incident. Authorities are investigating the motive behind the attack, and further details about the suspect have not been disclosed. The incident has raised concerns about the safety of tech executives in the area. #OpenAI#SamAltman#MolotovCocktail#SanFrancisco#TechExecutives#SafetyConcerns#Bloomberg#X#Attack

Embassy of Russia in Singapore

@rusembsg · Post #3846 · 10.02.2025 г., 03:34

On the occasion of the Russian #DiplomatsDay (February 10) we would like to tell you about the Contribution of Soviet Diplomacy to the Establishment of the #UN Key points: - At the #Moscow Conference of the Ministers of Foreign Affairs of the USSR, USA, Great Britain and China in October 1943, the #Soviet delegation put forward a proposal to establish a universal international organization. - The first draft of the #UNCharter was developed at a conference convened at the suggestion of the #USSR in Dumbarton Oaks (#USA) from September 21 to October 7, 1944. At this forum, representatives of the USSR, the USA, #GreatBritain and #China agreed on the goals, structure and functions of the world organization. The Soviet delegation consistently and resolutely advocated that the activities of this organization be based on democratic principles. - At the #Crimea (Yalta) Conference of the leaders of the great powers, which took place from 4 to 11 February 1945, participants agreed upon the issues of the initial members of the organization and the voting procedure in the Security Council, as well as on issues related to the maintenance of international peace and security, the development of economic relations, cooperation in the social, technical and other areas of interstate relations. - On April 25 – June 26, 1945, the founding conference of the United Nations was held in #SanFrancisco. The Soviet delegation sought to ensure that the #democratic principles of the structure and activities of the UN were enshrined in the Charter. - Based on Soviet amendments, important new provisions were included in the chapter on the purposes and principles of the UN, stating that peaceful settlement of international disputes should be carried out "in accordance with the principles of justice and international law"; that friendly relations between nations should develop "on the basis of respect for the principle of equal rights and self-determination of peoples"; that international cooperation in resolving international problems of an economic, social, cultural and humanitarian nature should be carried out "and in promoting and encouraging respect for human rights and for fundamental freedoms for all without distinction as to race, sex, language or religion...". - On June 26, 1945, the UN Charter was signed by A.A. Gromyko, then the Soviet Ambassador to the USA, thanks to whose personal participation and persistence the final documents related to the creation of the UN recorded positions largely corresponding to the interests of the Soviet Union. Full article: https://telegra.ph/te4st-02-10

Venture Village Wall 🦄

@venturevillagewall · Post #4011 · 28.01.2025 г., 16:00

AI Startup Founder Arrested for Fraud GameOn co-founder Alex Beckman and wife indicted for fraud in US. Allegedly misused $4M of $125M raised, using funds for luxury purchases, including a home, cars, and wedding. Prosecutors claim Beckman falsified company financials, overstating revenue and creating fake documents. GameOn's operations halted with layoffs after investigation into missing funds. Beckman's claims of acting in company's best interest questioned. Full details on the indictment can be found here. #AI#Startup#Fraud#Investment#GameOn#Beckman#Technology#Business#News#Legal#Indictment#TechIndustry#Innovation#Data#Investors#VC#Fintech#SanFrancisco#Luxury#FraudulentAccounting

VET's HUB ®

@vets_hub · Post #30255 · 07.12.2025 г., 03:32

NEWS 🔻𝗪𝗲𝗶𝗴𝗵𝘁 𝗹𝗼𝘀𝘀 𝗱𝗿𝘂𝗴𝘀 𝗳𝗼𝗿 𝗰𝗮𝘁𝘀? 𝗖𝗼𝗺𝗽𝗮𝗻𝘆 𝗹𝗮𝘂𝗻𝗰𝗵𝗲𝘀 𝗰𝗹𝗶𝗻𝗶𝗰𝗮𝗹 𝘁𝗿𝗶𝗮𝗹 𝗼𝗳 𝗚𝗟𝗣-𝟭 𝗶𝗺𝗽𝗹𝗮𝗻𝘁𝘀 𝗶𝗻 𝗰𝗮𝘁𝘀 #Okava_Pharmaceuticals, a San Francisco based company, plans to introduce on Tuesday a new #GLP_1 clinical weight loss study for cats. #MEOW_1, as the study is called, will look to use #OKV_119, a miniature implant, in cats which will deliver the GLP-1, continuously for up to six months. According to #Okava, MEOW-1 is the first-ever weight loss trial using this approach on household pets. Klotsman said the goal would be to file for #FDA approval for the product between 2027 and 2028, and the target is for the product to cost owners an out-of-pocket payment of around $100 per month. Read the full story 👇 https://abcnews.go.com/GMA/Wellness/weight-loss-drugs-cats-company-launches-clinical-trial/story?id=128054236 #feline#cats#pets#petobesity#petcare#okavapharmaceuticals#sanfrancisco#vets#petowners#veterinarians#dvm