Можно ли в 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
Phrasal verbs with "sleep":
○sleep in
●sleep on
○sleep off
●sleep over
○sleep through
sleep in
Example: I usually sleep in on weekends.
sleep on (it)
Example: I’m not sure about this offer. Let me sleep on it.
sleep off
Example: After the marathon, he slept off his exhaustion.
sleep over
Example: My friend invited me to sleep over at her house.
sleep through
Example: I slept through the storm last night.
••┈┈●•❁❁✹❁❁•●┈┈┈••
#phrasalverbs
#Phrasalverbs
@fluencyinenglish
❇️show up
حضور یافتن در جایی
When you appear somewhere, you show up.
👉Turn up is similar to show up.
Turn up
مترادف show up میباشد
Example:
1. I was supposed to meet my sister for lunch, but she didn't show up.
@fluencyinenglish
2. Over a hundred people showed up for the news conference.
____________________________
show up
ظاهر شدن
When something appears or becomes visible, it shows up.
@fluencyinenglish
Example:
1. It's hard to photograph polar bears because they don't show up well against the snow.
2. The spots won't show up until the last stages of the disease.
@fluencyinenglish
❇️knuckle down
If you knuckle down, you start to take your work or your task seriously and do it properly.
❇️For example:
knuckle down
🔹The exams start next month, so I guess it's time I knuckled down and studied a bit harder.
knuckle down
🔹If Sammy wants to lose weight, he'll have to knuckle down and start exercising more at the gym
🔹knucklehead/n/
UK /ˈnʌk.əl.hed/
US/ˈnʌk.əl.hed/ us informal
A stupid person
@fluencyinenglish
💡Phrasal Verb
"Set out"
🧐Meaning
to explain the details of something, especially in writing
✅Example:
A contract should clearly set out the responsibilities of each party.
#PhrasalVerbs
💡Phrasal Verb
"take in (2)"
🧐Meaning
to fully understand something you hear or read
✅Example:
I had to read the article a second time to really take it all in. It wasn't easy to understand.
#phrasalverbs
💡Phrasal Verb
"grow on"
🧐Meaning
If something grows on you, you gradually start to like it, even though you didn't like it much at first.
✅Example:
I didn't like the music at first, but it's grown on me and I like it a lot now.
#phrasalverbs
#Teamjimmy
#sirjimmy
💡Phrasal Verb
"to get (something) across"
🧐Meaning:
to express (something) clearly so that it is understood:
✅Example:
I don't know if I was able to get my point across to you.
#Phrasalverbs
#Teamjimmy
#sirjimmy
#vocabulary
#phrasalverbs
#advanced_vocabulary
@fluencyinenglish
@fluencyinenglish
@fluencyinenglish
🔹amount to something
/əˈmɑʊnt·tə, -ˌtu/
to add up to, be in total, be equal to, or be the same as
Example: Federal and state costs for building and operating prisons amounted to $25 billion.
Example: The blog amounts to a critique of the U.S. news media.
@fluencyinenglish
@fluencyinenglish
@fluencyinenglish
✴️Cede: To give up control; surrender
(sēd)
Example - "The police officers had to cede control to the FBI agents."
@fluencyinenglish
@fluencyinenglish
@fluencyinenglish
✴️Promenade: Leisurely walk
(prŏm′ə-nād′, -näd′)
Example - "The couple promenaded around town with matching outfits on."
@fluencyinenglish
@fluencyinenglish
@fluencyinenglish
✴️Cornucopia: Abundant supply
(kôr′nə-kō′pē-ə, -nyə-)
Example - "My mother loves to garden, she has a cornucopia of fresh veggies in the backyard."
@fluencyinenglish
@fluencyinenglish
@fluencyinenglish
✴️Inimitable: Unmatched; extremely unique
(ĭ-nĭm′ĭ-tə-bəl)
Example - "No matter how hard I tried, I couldn't recreate the painting of the mountains. It was terribly inimitable, and eventually I gave up."
@fluencyinenglish
@fluencyinenglish
@fluencyinenglish
✴️Coalesce: Fuse together
Example - "The two small fires coalesced and turned into one huge raging forest fire.
✅Sharing is caring
@fluencyinenglish
@fluencyinenglish
@fluencyinenglish
#vocabulary
#phrasalverbs
#advanced_vocabulary
@fluencyinenglish
@fluencyinenglish
@fluencyinenglish
🔹amount to something
/əˈmɑʊnt·tə, -ˌtu/
to add up to, be in total, be equal to, or be the same as
Example: Federal and state costs for building and operating prisons amounted to $25 billion.
Example: The blog amounts to a critique of the U.S. news media.
@fluencyinenglish
@fluencyinenglish
@fluencyinenglish
✴️Cede: To give up control; surrender
(sēd)
Example - "The police officers had to cede control to the FBI agents."
@fluencyinenglish
@fluencyinenglish
@fluencyinenglish
✴️Promenade: Leisurely walk
(prŏm′ə-nād′, -näd′)
Example - "The couple promenaded around town with matching outfits on."
@fluencyinenglish
@fluencyinenglish
@fluencyinenglish
✴️Cornucopia: Abundant supply
(kôr′nə-kō′pē-ə, -nyə-)
Example - "My mother loves to garden, she has a cornucopia of fresh veggies in the backyard."
@fluencyinenglish
@fluencyinenglish
@fluencyinenglish
✴️Inimitable: Unmatched; extremely unique
(ĭ-nĭm′ĭ-tə-bəl)
Example - "No matter how hard I tried, I couldn't recreate the painting of the mountains. It was terribly inimitable, and eventually I gave up."
@fluencyinenglish
@fluencyinenglish
@fluencyinenglish
✴️Coalesce: Fuse together
Example - "The two small fires coalesced and turned into one huge raging forest fire.
✅Sharing is caring
@fluencyinenglish
@fluencyinenglish
@fluencyinenglish
#vocabulary
#phrasalverbs
#advanced_vocabulary
@fluencyinenglish
@fluencyinenglish
@fluencyinenglish
🔹amount to something
/əˈmɑʊnt·tə, -ˌtu/
to add up to, be in total, be equal to, or be the same as
Example: Federal and state costs for building and operating prisons amounted to $25 billion.
Example: The blog amounts to a critique of the U.S. news media.
@fluencyinenglish
@fluencyinenglish
@fluencyinenglish
✴️Cede: To give up control; surrender
(sēd)
Example - "The police officers had to cede control to the FBI agents."
@fluencyinenglish
@fluencyinenglish
@fluencyinenglish
✴️Promenade: Leisurely walk
(prŏm′ə-nād′, -näd′)
Example - "The couple promenaded around town with matching outfits on."
@fluencyinenglish
@fluencyinenglish
@fluencyinenglish
✴️Cornucopia: Abundant supply
(kôr′nə-kō′pē-ə, -nyə-)
Example - "My mother loves to garden, she has a cornucopia of fresh veggies in the backyard."
@fluencyinenglish
@fluencyinenglish
@fluencyinenglish
✴️Inimitable: Unmatched; extremely unique
(ĭ-nĭm′ĭ-tə-bəl)
Example - "No matter how hard I tried, I couldn't recreate the painting of the mountains. It was terribly inimitable, and eventually I gave up."
@fluencyinenglish
@fluencyinenglish
@fluencyinenglish
✴️Coalesce: Fuse together
Example - "The two small fires coalesced and turned into one huge raging forest fire.
✅Sharing is caring
@fluencyinenglish
@fluencyinenglish
@fluencyinenglish
5 phrasal verbs with “PAY”
I shared the questions first on purpose — to make you think before seeing the meanings.
That struggle helps the meanings stick better than passive reading.
If a meaning surprised you, that’s good — it means your brain is actually learning.
#EnglishLearning#PhrasalVerbs#LearnEnglish#RealEnglish