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

Резултати

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

Пребарај: #englishgrammar

当前筛选 #englishgrammar清除筛选
BBC Learning English

@english_bbc_learning · Post #3702 · 04.10.2025 г., 08:21

🤔 Do you know how to use the phrase ‘bite the bullet’? Here’s an example sentence: “I decided to bite the bullet and start cleaning up after the party.” 🎉 ⁣ 💬 Can you write another example sentence?⁣ ⁣ EXTRA: to learn other useful expressions like this, click on our link in bio. ⁣ #LearnEnglish#Idioms#EnglishGrammar

BBC Learning English

@english_bbc_learning · Post #3721 · 11.10.2025 г., 16:28

🥗Salad? 🥕Carrots? 🍳Eggs? Do you like food as an adult that you hated when you were young? 🤮 Answer this grammar question – and then tell us all about it! ⁣ ⁣ There's more about 'used' to on our website - just click the link in our bio! 👆👆👆⁣ ⁣ #Grammar#EnglishGrammar#LearnEnglish#English

BBC Learning English

@english_bbc_learning · Post #3881 · 10.01.2026 г., 07:53

📚First Conditional (Simple & Clear) We use the first conditional to talk about real or possible situations in the present or future and their results. 🧩 Structure: If + present simple, will + base verb ✅ If I pay attention in class, I will understand everything. ➡️ Real situation → real result. #EnglishGrammar#Conditionals#LearnEnglish

BBC Learning English

@english_bbc_learning · Post #3812 · 22.12.2025 г., 13:09

👋 Learn how to use the present simple. Look at the images and complete the gap:⁠⁣ We _______ to school on Saturdays.⁣ a. does not go⁣ b. not go⁣ c. don’t go⁣ ⁣ 🤩 EXTRA: Click on our link in bio for more help with this tense. ⁣ #learnenglish#present#englishgrammar#englishtips

BBC Learning English

@english_bbc_learning · Post #3931 · 14.03.2026 г., 23:34

Mastering Prepositions of Time: IN, ON, AT! ⏰ Do you ever get confused about which preposition to use when talking about time? You're not alone! Here is a quick cheat sheet to help you remember: 🎯 AT – for specific times (e.g., mealtimes, clock times, night, the weekend) 📅ON – for days and dates (e.g., Saturday, the 8th of September) ⏳IN – for longer periods (e.g., months, seasons, years, the morning) Check out the infographic above for more examples! Test your knowledge! Take the quick quiz below and see how much you've learned. Save this post for later, and forward it to a friend who is practicing their spoken English! 🔖 #LearnEnglish#EnglishGrammar#Prepositions#EnglishTips#ESL

Journey to Fluency

@fluencyinenglish · Post #7908 · 17.02.2026 г., 19:57

Difference Between “drop out” and “be dropped out” Many people make this mistake: ❌ I was dropped out This sentence is grammatically incorrect. The correct structure is: ✅ I dropped out. Meaning: I voluntarily left or withdrew from school/university. Why “was dropped out” is wrong “Drop out” is an intransitive verb. It does not take an object, so it cannot be used in the passive voice. ❌ You cannot say: I was dropped out of university. Because dropping out is something you do yourself. Correct Usage If it was your decision: I dropped out of university. If it wasn’t your decision: Use other verbs to express that: I was expelled from university. I was forced to leave university. @fluencyinenglish #EnglishGrammar#GrammarTips#DropOut#PassiveVoice#IntransitiveVerbs#IELTSGrammar#CommonMistakes#LearnEnglish#TEFL

BBC Learning English

@english_bbc_learning · Post #3843 · 02.01.2026 г., 05:48

Do you know how and when to use ‘in’, ‘on’ and ‘at’ to talk about time? ⏰⁣ ⁣ We normally use:⁣ ⁣ at – for specific times, such as mealtimes and clock times⁣ ⁣ on – with days and dates⁣ ⁣ in – for longer periods of time, such as months, seasons and years.⁣ ⁣ Save this post for later and don’t forget to share with a friend who loves learning English! 🔖⁣ #LearnEnglish#EnglishGrammar#PrepositionsOfTime#InOnAt#GrammarTips#ESL#DailyEnglish 🛫 Advertising: @Advertise_on_Telegram

12
ПретходнаСтраница 1 од 2Следна