@QuietWorld · Post #7102 · 24.12.2019 г., 01:35
🗾 How often we fail to realize our good fortune in living in a country where happiness is more than a lack of tragedy. #quotes#gratitude @quietworld🍃
Hashtags
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
Пребарај: #gratitude
@QuietWorld · Post #7102 · 24.12.2019 г., 01:35
🗾 How often we fail to realize our good fortune in living in a country where happiness is more than a lack of tragedy. #quotes#gratitude @quietworld🍃
Hashtags
@QuietWorld · Post #6773 · 23.10.2019 г., 08:30
🔖 Appreciate where you are in your journey, even if it's not where you want to be; every season serves a purpose. #life#gratitude#wisdom @quietworld🍃
Hashtags
@QuietWorld · Post #6625 · 02.10.2019 г., 03:52
"How cool is it that the same God who created mountains and oceans and galaxies looked at you & thought, the world needed one of you, too." #quotes#reminder#gratitude @quietworld🍃
Hashtags
@QuietWorld · Post #6904 · 14.11.2019 г., 14:55
#positivity#gratitude @quietworld🍃
Hashtags
@QuietWorld · Post #6811 · 28.10.2019 г., 13:01
We love those people who give with humility, or who accept with ease. #kindness#gratitude @quietworld🍃
Hashtags
@QuietWorld · Post #7145 · 14.01.2020 г., 00:32
Life is Simple First, Don't bother with other people's lives, no need to comment much, no slander here and there, no need to make fun of it.. Second, Live within your means. Don't torture yourself just to follow trends or impress people. Third, Just enjoy your life and be the best you can be. Be grateful for what you have, and do what you want. Fourth, Don't listen to what people say. Even if that person insults you. Just remember, you didn't ask that person to feed you anyway. Have a blessed day ☺️🌻 #life#gratitude#attitude @quietworld🍃
Hashtags
@the_life_tips · Post #16090 · 11.05.2025 г., 04:30
Happy Mother's Day!🤰🤱🎉 Today, we celebrate the strength, wisdom, and unconditional love of all mothers. A mother is not just someone who gives life, but someone who inspires it. She teaches us resilience through her sacrifices, courage through her actions, and love without limits. Take a moment to appreciate the woman who shaped your beginnings. And if you're striving for greatness—remember, behind every strong person is often a mother who believed in them first. Honor her. Thank her. Make her proud. #MothersDay#Gratitude LIFE TIPS✅️
Hashtags
@news_and_tips · Post #825 · 21.01.2023 г., 02:30
Hello 👋 everyone! Today is my birthday🍰 and I just wanted to take a moment to thank each and every one of you 🫵 for being a part of my journey. Your support and encouragement means the world to me❣. I'm excited to continue creating content and sharing it with you all. Here's to another year of growth and adventure! Cheers! 🥂 #birthday#gratitude
Hashtags
@QuietWorld · Post #6821 · 30.10.2019 г., 06:30
"I don't have to chase extraordinary moments to have happiness – it's right in front of me if I'm paying attention & practicing gratitude." #happiness#gratitude#reminder @quietworld🍃
Hashtags
@QuietWorld · Post #7696 · 25.11.2020 г., 00:45
Simple Pleasures in Life #life#gratitude#beauty @quietworld🍃
Hashtags
@QuietWorld · Post #7181 · 04.02.2020 г., 07:41
when life gets hard, count your blessings.. it might not solve all your problems, but it'll help you go through the hard times easier and better..🍃 #afterthoughts#thoughts#gratitude#attitude @quietworld🍃
@QuietWorld · Post #6856 · 04.11.2019 г., 13:33
Appreciate where you are in your journey, even if it's not where you want to be - because every season serves a purpose. #life#quotes#assurance#gratitude#happiness @quietworld🍃