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

TGINSIGHT SIMILAR POSTS

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

Изворен канал @pythonotes · Post #22 · 19 јан.

Заметка начинающим, которые часто сталкиваются с подобной непоняткой. Ситуация следующая, есть список файлов: names = [ 'image.bmp', 'second.txt.bkp', 'data.db', '.config.cfg', 'file.ext.bkp' ] И мы хотим убрать у них окончание ".bkp". Не знаю зачем, пример довольно надуманный) Но суть он показывает, а это главное. Те, кто еще не очень знаком с библиотекой os.path или pathlib, вероятно решат обработать имена как строки. И тут вполне подойдет метод строки strip(). Что делает этот метод? Он отрезает указанные символы по обеим сторонам строки. Если ничего не указать, то убирает невидимые символы (пробелы, табуляции и переносы строк). В нашем случае будет выглядеть вот так: >>> name.strip('.bkp') То есть просим удалить строку '.bkp' по краям имени файла, если таковая есть. Можно применить аналогичный метод rstrip(), чтобы отрезать только справа, но для этого примера используем обычный. >>> for name in names: >>> print(name.strip('.bkp')) image.bm second.txt data.d config.cfg file.ext Хм, что-то не то с нашими именами! Что случилось??? Видим нежелательное переименование в именах, где и близко не было указанной строки '.bkp' А дело всё в том, что данный метод ищет не указанную строку, а указанные символы, и не важно в каком порядке. Для метода strip() строка '.bkp' это не паттерн для поискаа список символов. Потому он отрезал симовол 'p' от '.bmp' и удалил точку из файла '.config.cfg'. Как тогда правильно заменить именно паттерн? Для начинающего можно посоветовать метод строки replace(), который как раз использует для замены указанную строку целиком. В нашем примере заменим её на пустую строку. >>> for name in names: >>> print(name.replace('.bkp', '')) image.bmp second.txt data.db .config.cfg file.ext Уже лучше, но помните, это лишь пример про strip(). Для работы с именами файлов есть способы и более "правильные", дающие однозначно верный результат. Я взял файлы только в качестве примера. Даже replase() тут может сделать не то что ожидаем. Просто впредь будьте внимательны с этим strip(). #basic

Hashtags

Резултати

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

Пребарај: #ancientgreece

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

@googlefactss · Post #40219 · 29.11.2025 г., 15:04

The custom of putting candles on cakes dates back to the ancient Greeks, who honored the goddess Artemis by placing lit candles on round, moon-shaped cakes. They believed that the smoke from the candles carried their wishes and prayers up to the gods in the sky. @googlefactss#history#ancientgreece

Google Facts™ [ ️@googlefactss🌎]

@googlefactss · Post #40693 · 22.02.2026 г., 23:01

The name Ethiopia comes from the ancient Greek word “Aithiopia.” It comes from “aithō” (to burn) and “ops” (face), meaning “burnt face.” Ancient Greeks used this word to describe dark-skinned people living south of Egypt. The word appears in the works of Homer, who lived around the 8th century BCE. 🌍🔥 #Ethiopia#History#AncientGreece#DidYouKnow@googlefactss

Google Facts™ [ ️@googlefactss🌎]

@googlefactss · Post #40123 · 18.11.2025 г., 19:01

In ancient Greece, rhaphanidosis was a documented punishment for adultery 📜. Those convicted would have a radish root inserted into their anus as both physical penalty and public shaming . [Source] 🍑🥕 @googlefactss#AncientGreece#History#HistoricalFacts#Vegetables

Google Facts™ [ ️@googlefactss🌎]

@googlefactss · Post #40239 · 02.12.2025 г., 19:00

The first vending machine was invented in the 1st century AD by Greek engineer Heron of Alexandria. It dispensed holy water when a coin was inserted—the weight tilted a lever, opening a valve to release water before the coin dropped. 💧⚖️ [Learn more] @googlefactss #History#Inventions#Engineering#AncientGreece

Google Facts™ [ ️@googlefactss🌎]

@googlefactss · Post #40236 · 02.12.2025 г., 07:04

🌍 Over 2,200 years ago, the Greek mathematician Eratosthenes calculated Earth’s circumference using only a stick and his brain — and he was almost exactly right! 📏 By observing shadows in two cities, he calculated the Earth was about 40,000 km around. Ancient genius at its finest! [Source] @googlefactss#AncientGreece#ScienceHistory#Eratosthenes#EarthCircumference#AncientScience

Google Facts™ [ ️@googlefactss🌎]

@googlefactss · Post #40689 · 21.02.2026 г., 23:01

In ancient Athens, some elite men formed socially recognized relationships with adolescent boys called eromenos. The adult, erastes, acted as a mentor, teaching the boy skills and introducing him to society. These relationships were accepted at the time and had strict social rules: the boy had to be young and not fully grown. Once he reached adulthood, remaining in that role was considered inappropriate.. 🏛️📜 @googlefactss#AncientGreece#History#Athens#Culture#Mentorship#Elite#law