Python 🇺🇦
▪️Вивчаємо Python разом. ▪️Високооплачувана професія ▪️Допомагаємо з пошуком роботи Зв'язок: @Ekater1na_admin
Show more📈 Analytical overview of Telegram channel Python 🇺🇦
Channel Python 🇺🇦 in the Ukrainian language segment is an active participant. Currently, the community unites 20 278 subscribers, ranking 6 372 in the Technologies & Applications category and 3 018 in the Ukraine region.
📊 Audience metrics and dynamics
Since its creation on невідомо, the project has demonstrated rapid growth, gathering an audience of 20 278 subscribers.
According to the latest data from 05 September, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by -192 over the last 30 days and by -5 over the last 24 hours, overall reach remains high.
- Verification status: Not verified
- Engagement rate (ER): The average audience engagement rate is 9.69%. Within the first 24 hours after publication, content typically collects 5.38% reactions from the total number of subscribers.
- Post reach: On average, each post receives 1 964 views. Within the first day, a publication typically gains 1 090 views.
- Reactions and interaction: The audience actively supports content: the average number of reactions per post is 11.
- Thematic interests: Content is focused on key topics such as шпаргалка, mcp, user1, python'er, бібліотека.
📝 Description and content policy
The author describes the resource as a platform for expressing subjective opinions:
“▪️Вивчаємо Python разом.
▪️Високооплачувана професія
▪️Допомагаємо з пошуком роботи
Зв'язок: @Ekater1na_admin”
Thanks to the high frequency of updates (latest data received on 06 September, 2026), the channel maintains relevance and a high level of publication reach. Analytics show that the audience actively interacts with content, making it an important point of influence in the Technologies & Applications category.
import re
def slugify(s):
s = s.lower().strip()
s = re.sub(r'[^\w\s-]',' ', s)
s = re.sub(r'[\s_-]+','-', s)
s = re.sub(r'^-+|-+$',' ', s)
return s
print(slugify('Hello, World!'))
# Output: hello-world
Ми написали просту функцію, де використовували методи lower() для приведення в нижній регістр та strip() для видалення пробілів ліворуч і праворуч.
Також для видалення деяких символів та заміни на знак дефісу були використані регулярні вирази та вбудований пакет re для роботи з ними.
#practice // Архів книг // Pythonget у словниках. Його основний плюс полягає в тому, що він приймає опціональний аргумент, який відповідає за значення за промовчанням.
a = { 'max': 200 }
b = { 'min': 100, 'max': 250 }
c = { 'min': 50 }
a['min'] + b['min'] + c['min'] # throws KeyError
a.get('min', 0) + b.get('min', 0) + c.get('min', 0) # 150
Таким чином, якщо значення ключа не знайдено, то повернеться дефолтне значення. У результаті — ми прибираємо можливі помилки у тому разі, якщо потрібних ключів у словнику немає.
#practice // Архів книг // PythongTTS (Google Text-to-Speech), яка взаємодіє з Google Translate's text-to-speech API і дозволяє робити з тексту аудіофайли. Пакет встановлюється через pip.
from gtts import gTTS
# Початковий текст
text = 'Привіт, світ!'
# Отримуємо результат
obj = gTTS(text, lang='ua')
# Зберігаємо в файл
obj.save('hw.mp3')
Під час створення екземпляра класу gTTS ми передаємо вихідний текст першим аргументом. Також можна передати опціональний аргумент, що відповідає за мову.
#practice // Вакансії IT // Pythonfor і надають зручний та ефективний спосіб роботи з даними.
Мова: 🇺🇦
#theory // Архів книг // Pythonpyarmor, призначена саме для цього.
→ ~ cat script.py
def print_hello():
print('Hello, World!')
print_hello()
→ ~ pyarmor obfuscate script.py
→ ~ cat dist/script.py
from pytransform import pyarmor_runtime
pyarmor_runtime( )
__pyarmor__(__name_, __file__, b'\x50\... \x70', 2)
→ ~ python3 dist/script.py
Hello, World!
Приклад 👆 використання цього пакета в терміналі. Таким чином, іншим розробникам стає проблематично отримати та зрозуміти ваш вихідний код для того, щоб, наприклад, зламати програму. Обфускація робить аналіз коду вкрай складним, а іноді й неможливим.
#practice // Архів книг // Pythonstring, integer, float).
Мова: 🇺🇦
Автор: Дист Освіта
#lessons // Вакансії IT // Python