TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

TGINSIGHT SIMILAR POSTS

Најди сличен содржај

Изворен канал @pythonotes · Post #281 · 18 авг.

Что-то вы гоните насчет "привычного вида формата 755 и 644". Я вот вообще не понял что это!😳 Действительно, что означают цифры которые мы получили в прошлом посте? Это кодировка, заключающая в себе режимы доступа к файлу. Подробней можно почитать в статье про chmod. Там можно увидеть альтернативное обозначение того же самого с помощью символов r w x, что значит чтение, запись, исполнение. Чтобы преобразовать восьмеричное число в такое обозначение в Python есть готовая функция >>> stat.filemode(0o755) '?rwxr-xr-x' Мы видим 3 группы по 3 символа, дающие 3 типа доступа для 3 типов юзеров. А что за знак вопроса в начале? Давайте передадим в эту функцию необрезанное значение от os.stat >>> stat.filemode(os.stat(path).st_mode) 'drwxr-xr-x' Это данные, которые мы безжалостно обрезали в прошлый раз😼 Первый символ обозначает тип объекта. Это может быть файл (-), директория (d) или симлинк (l). Вот простая схема данной кодировки [1][3][3][3] │ │ │ │ │ │ │ └──> Others Permissions │ │ └─────> Group Permissions │ └────────> Owner Permissions └───────────> File Type (разверните экран если вы с телефона) Если вы попробуете получить пермишены для симлинка то получите пермишены для файла >>> path = '.venv/bin/python3' >>> stat.filemode(os.stat(path).st_mode) '-rwxr-xr-x' Чтобы получить свойства именно симлинка, нужно это явно указать >>> stat.filemode(os.stat(path, follow_symlinks=False).st_mode) 'lrwxrwxrwx' #tricks#basic

Резултати

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

Пребарај: #crustaceans

当前筛选 #crustaceans清除筛选
Google Facts™ [ ️@googlefactss🌎]

@googlefactss · Post #40853 · 24.03.2026 г., 07:02

Male and female crabs can be distinguished by looking at their abdominal flap (apron) shape, with males having a narrow, triangular (or T-shaped) apron and females possessing a broad, rounded, or U-shaped apron. Females, often called "sooks," use this wide abdomen to carry eggs, while males ("jimmies") generally have larger claws. @googlefactss#crustaceans

Hashtags

Interesting Planet 🌍

@interesting_planet_facts · Post #883 · 09.10.2025 г., 18:11

🌎 The yeti crab was discovered in 2005 near deep-sea hydrothermal vents in the South Pacific. Its pincers are covered with hair-like bristles that host bacteria, which the crab farms for food. This crab lives 2,200 meters below the surface, where sunlight never reaches. ✨ #ocean⚡#animals⚡#crustaceans 👉subscribe Interesting Planet 👉more Channels ​

Interesting Planet 🌍

@interesting_planet_facts · Post #1287 · 11.02.2026 г., 22:11

🌎 Beneath the Ross Ice Shelf in Antarctica, researchers discovered a thriving community of tiny amphipod crustaceans living over 500 meters below the ice. Scientists accessed this hidden ecosystem in 2015 by drilling through the thick ice, revealing life where sunlight never reaches. This shelf covers an area roughly the size of France. ✨ #ocean⚡#Antarctica⚡#crustaceans 👉subscribe Interesting Planet 👉more Channels ​