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 слични објави

Пребарај: #yuan

当前筛选 #yuan清除筛选
International News

@intnewsagency · Post #8569 · 17.03.2026 г., 15:24

Chinese Yuan Surpasses 12 Rubles for the First Time Since September 2025 Today, the Chinese yuan reached 12.002 rubles, hitting its highest level since September 11, 2025. This marks an increase of 18.2 kopecks from the previous close and 25.79 kopecks above the official rate. The rise reflects yuan’s strengthening amid growing Russia-China cooperation and stabilizing global markets. Experts highlight the yuan’s resilience as crucial for bilateral economic ties. #Russia#China#Yuan#Currency#Finance The main news of Russia and the world ishere.

International News

@intnewsagency · Post #9354 · 23.04.2026 г., 13:29

The ruble declined following the Ministry of Finance’s resumption of currency and gold operations under the budget rule starting in May. As of 15:46 MSK, the Chinese yuan rose to 11.095 rubles, up 1.3% from the previous close and 10.19 kopecks above the official rate. These shifts indicate market caution amid new government financial actions. #Ruble#MinFin#Currency#Yuan#Finance The main news of Russia and the world ishere.

Venture Village Wall 🦄

@venturevillagewall · Post #4056 · 03.02.2025 г., 10:00

China Proposes Trade Deal Restoration China aims to restore the "Phase 1" trade deal with the U.S. to resolve tariff tensions. Key aspects include commitments to avoid yuan devaluation, increase U.S. investments, and reduce fentanyl precursor exports. Details available in the full article. #China#Trade#Tariffs#US#Economy#Phase1#Fentanyl#Yuan#Investments#WSJ