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 867 subscribers, ranking 6 486 in the Technologies & Applications category and 2 944 in the Ukraine region.
📊 Audience metrics and dynamics
Since its creation on невідомо, the project has demonstrated rapid growth, gathering an audience of 20 867 subscribers.
According to the latest data from 11 June, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by -177 over the last 30 days and by -3 over the last 24 hours, overall reach remains high.
- Verification status: Not verified
- Engagement rate (ER): The average audience engagement rate is 9.36%. Within the first 24 hours after publication, content typically collects 5.48% reactions from the total number of subscribers.
- Post reach: On average, each post receives 1 953 views. Within the first day, a publication typically gains 1 143 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 12 June, 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.
|.
>>> d1 = {'one': 1}
>>> d2 = {' two': 1}
>>>
>>> {**d1, **d2} # раніше
{'one': 1, 'two': 1}
>>>
>>> d1 | d2 # зараз
{'one': 1, 'two': 1}
>>> d1 |= d2
>>> d1
{'one': 1, 'two': 1}
#practice // Архів книг // Pythonhashlib, який реалізує спільний інтерфейс для ряду популярних хеш-функцій і може використовувати функції, що доступні в системі і надаються зі встановленим OpenSSL.
>>> import hashlib
>>>
>>>
hash = hashlib.md5(b"some ")
>>> hash.hexdigest()
'6a989e8c321949ae03c391c87elbd8c'
>>>
>>> hash.update(b"message")
>>> hash.hexdigest()
'df49b60423903e095b80d9b4a92eb065'
Використання дуже просте, у модулі існує низка конструкторів, що відповідають назвам хеш-функцій. У конструктор ми можемо передати байт-рядок, хеш якого хочемо отримати, а на виході отримаємо об'єкт хеша.
Об'єкт хеша ми можемо оновити методом update, сконтактенувавши цим рядки, а також можемо вивести отримане значення методами digest і hexdigest. Перший повертає байт-рядок, другий — у шістнадцятковому форматі.
#practice // Архів книг // Pythonupper, lower, isupper, islower, isdigit, find, rfind, count, split, replace.
Мова: 🇺🇦
Автор: Дист Освіта
Тривалість: 20 хв
#lessons // Архів книг // Pythondef greet():
while True:
name = yield
print(f'Hello, {name}!')
g = greet()
g.send(None) # priming
g.send('Mark')
# Outpur: Hello, Mark!
g.send('Alice')
# Outpur: Hello, Alice!
Зверніть увагу на ключове слово yield. При такому написанні створюється не генератор, а корутина, яка дозволяє не просто генерувати значення, а й набувати їх.
Функція працює так: при надсиланні значення через метод send локальна змінна name приймає його, а далі значення підставляється в рядок і виводиться на екран.
#practice // Вакансії IT // Pythontype служить динамічною заміною інструкції class і дозволяє створювати нові об'єкти типу під час виконання.
>>> type(1)
<class 'int'>
>>> type(True)
<class 'bool'>
>>>
>>> # динамічно визначаємо тип під час виконання
>>> X = type('X', (object,), dict(a=1))
>>>
>>> # еквівалент варіанта з type
>>> class X:
... a = 1
...
Перший аргумент є ім'ям класу і стає атрибутом __name__; другий аргумент є кортежем з перерахованими базовими типами та стає атрибутом __base__; словник буде тілом класу і стане атрибутом __dict__.
#practice // Вакансії IT // Python>>> dir(int)
['__abs__', '__add__', '__and__', '__bool__', '__ceil__', '__class__', '__delattr__', '__dir__', '__divmod__', '__doc__', '__eq__', '__float__', '__floor__', '__floordiv__', '__format__', '__ge__', '__getattribute__', '__getnewargs__', '__gt__', '__hash__', '__index__', '__init__', '__init_subclass__', '__int__', '__invert__', '__le__', '__lshift__', '__lt__', '__mod__', '__mul__', '__ne__', '__neg__', '__new__', '__or__', '__pos__', '__pow__', '__radd__', '__rand__', '__rdivmod__', '__reduce__', '__reduce_ex__', '__repr__', '__rfloordiv__', '__rfshift__', '__rmod__', '__rmul__', '__ror__', '__round__', '__rpow__', '__rrshift__', '__rshift__', '__fsub__', '__rtruediv__', '__rxor__', '__setattr__', '__sizeof__', '__str__', '__sub__', '__subclasshook__', '__truediv__', '__trunc__', '__xor__', 'bit_length', 'conjugate', 'denominator', 'from_bytes', 'imag', 'numerator', 'real', 'to_bytes']
Наприклад, коли ви складаєте два числа за допомогою оператора +, викликається метод __add__(). Вбудовані класи мають багато реалізованих магічних методів за умовчанням.
#practice // Вакансії IT // Python
Available now! Telegram Research 2025 — the year's key insights 
