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

Резултати

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

Пребарај: #punctuation

当前筛选 #punctuation清除筛选
Learn RCRussian🤍💙❤️

@learnrcrussian · Post #4384 · 21.03.2025 г., 15:00

Был бы у меня такой кот, я, может, и не женился бы никогда. If I had a cat like that, I might never have gotten married. • Может [mo-zhyt] Maybe, perhaps, probably, might 🔻This introductory word expressing possibility or probability is set off by commas in a sentence. 😉С пятницей, товарищи! #just_a_joke #just_cats #punctuation #Friday 😎 Stay with @learnRCRussian

Language Trivia 🤔

@languagetrivia · Post #490 · 16.12.2024 г., 09:47

Did you know that Spanish 🇪🇸 uses upside down exclamation and question marks (¡ and ¿) at the beginning of sentences? ¡Qué bonito! ("How beautiful!") ¿Cómo estás? ("How are you?") Creo que tienes razón, pero ¿estás completamente seguro? ("I think you're right, but are you completely sure?") Below you'll find a block of questions on these upside down punctuation marks. For each question react with 👍🏻 if you got it right and 🙈 if you got it wrong. @languagetrivia#question_block#punctuation

Language Trivia 🤔

@languagetrivia · Post #463 · 10.12.2024 г., 19:02

In the world of printing and journalism, the exclamation mark (!) has earned a variety of colorful nicknames. One of these humorous terms compares its shape to a specific part of a dog’s anatomy. Sometimes an exclamation mark is humorously referred to as “a dog’s [what]"? A) Tail 🐕 B) Nose 👃 C) Bone 🦴 D) C*ck🍆 Take the quiz below to find out @languagetrivia#punctuation#symbol#slang

Language Trivia 🤔

@languagetrivia · Post #596 · 16.01.2025 г., 10:16

✏️Did you know about the Oxford comma, also known as the serial comma? It's the final comma in a list of three or more items, placed before "and" or "or." For example: 🔵I invited my parents, Taylor Swift, and Elon Musk. Without the Oxford comma, it could look like this: 🔵I invited my parents, Taylor Swift and Elon Musk. Wait, are my parents Taylor Swift and Elon Musk?! 😅 Not everyone agrees on its usage: 🟢Proponents argue it provides clarity and prevents ambiguity 📝 🟣Opponents feel it’s unnecessary in straightforward cases and takes up space 📰 For instance, the AP Stylebook often skips it unless absolutely needed, but the Chicago Manual of Style recommends using it in all cases. Here are some examples showing how the Oxford comma can help fight ambiguity: 1️⃣Avoiding Misinterpretation: I dedicate this book to my parents, Mother Teresa, and the pope. Without the Oxford comma: I dedicate this book to my parents, Mother Teresa and the pope. This could imply that your parents are Mother Teresa and the pope. 😳 2️⃣Clarifying Groupings: We had coffee, cheese and crackers, and grapes. Without the Oxford comma: We had coffee, cheese and crackers and grapes. This could suggest that "crackers and grapes" are a combined dish. 🍇🧀 3️⃣Costly Consequences: O'Connor v. Oakhurst Dairy (2017) was a U.S. legal case where truck drivers sued for overtime pay, challenging an ambiguous Maine law that lacked an Oxford comma. The law exempted work involving "packing for shipment or distribution" of goods. Without a comma, it was unclear if "distribution" was part of "packing" or a separate activity. The court sided with the drivers, interpreting the ambiguity in their favor, leading to a $5 million payout. 💸 📌Ultimately, whether or not you use the Oxford comma is up to you, but the key is to be consistent. And it's also a good idea to use it in cases where it can help prevent ambiguity and misinterpretation! Sources: Grammarly |Wikipedia Tap ❤️ if you found this interesting @languagetrivia#grammar#punctuation#fact