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

Резултати

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

Пребарај: #globaltensions

当前筛选 #globaltensions清除筛选
Crypto M - Crypto News

@CryptoM · Post #64725 · 09.04.2026 г., 16:12

🚀 Mortgage Rates Decline Amid Global Tensions Mortgage rates have decreased for the first time since the onset of the conflict in Iran. Bloomberg posted on X, highlighting the impact of geopolitical tensions on financial markets. The decline in rates comes as investors seek safer assets amid uncertainty. This shift in mortgage rates could influence housing market dynamics, offering potential relief to prospective homebuyers. Analysts suggest that continued geopolitical instability may further affect economic conditions globally. #MortgageRates#GlobalTensions#Geopolitics#FinancialMarkets#HousingMarket#EconomicImpact#Investors#Homebuyers#MarketUncertainty

Crypto M - Crypto News

@CryptoM · Post #64506 · 09.04.2026 г., 04:16

🚀 U.S. Vice President Advocates Peaceful Nationalism in Hungary Amid Global Tensions U.S. Vice President Donald Trump has expressed support for Hungarian Prime Minister Viktor Orban by promoting a vision of peaceful nationalism during his visit to Hungary. Bloomberg posted on X, highlighting the vice president's message, which contrasts sharply with the ongoing conflict in Iran. The advocacy for nationalism comes at a time when global tensions are heightened, raising questions about the feasibility of such an approach in the current geopolitical climate. Critics argue that the situation in Iran undermines the viability of peaceful nationalism, as international conflicts continue to pose significant challenges. The vice president's remarks aim to strengthen diplomatic ties with Hungary, emphasizing shared values and mutual interests. However, the backdrop of the Iran war presents a complex scenario for implementing nationalist policies focused on peace. #US#Hungary#Nationalism#PeacefulNationalism#ViktorOrban#DonaldTrump#Geopolitics#IranConflict#Diplomacy#GlobalTensions