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 282 subscribers, ranking 6 361 in the Technologies & Applications category and 3 021 in the Ukraine region.
📊 Audience metrics and dynamics
Since its creation on невідомо, the project has demonstrated rapid growth, gathering an audience of 20 282 subscribers.
According to the latest data from 04 September, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by -200 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.69%. Within the first 24 hours after publication, content typically collects 5.41% reactions from the total number of subscribers.
- Post reach: On average, each post receives 1 965 views. Within the first day, a publication typically gains 1 098 views.
- Reactions and interaction: The audience actively supports content: the average number of reactions per post is 12.
- 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 05 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.
Weakref дозволяє створювати слабкі посилання на об'єкти, але не підтримує об'єкт живим, якщо не залишилося більше сильних посилань.
import weakref
class WeakRefClass:
def __init__(self):
# якась логіка
self.a = 2
weak = WeakRefClass()
weak_foo = weakref.ref(weak)
print(weak_foo()) # отримує доступ до початкового об'єкту
"""<__main__.Foo object at 0x7f3f5508beb0>"""
print(weak_foo() is weak)
"""True"""
del weak # видаляємо посилання
print (weak_foo())
"""None"""
Слабкі посилання потрібні для організації кешів і хеш-таблиць з важких об'єктів, бо в довгоживучих програмах може скінчитися пам'ять.
#practice // Вакансії IT // PythonСhainMap групує кілька словників чи інших зіставлень разом, щоб створити єдине представлення — коли треба згрупувати словники в один або ж працювати з множиною словників.
from collections import ChainMap
numbers = {"one": 1, "two": 2}
letters = {"a": "A", "b": "B"}
print(ChainMap(numbers, letters))
"""ChainMap({'one': 1, 'two': 2}, {'a': 'A', 'b': 'B'})"""
ChainMap представляє той самий інтерфейс, як і словник, але з додатковими можливостями, а також створює обновлюване представлення і бачить зовнішні зміни у вхідних відображеннях.
#practice // Вакансії IT // Pythonimport d3dshot
# Ініціалізація
d = d3dshot.create()
# Отримати скріншот у змінну
# з типом PIL.Image
img = d.screenshot()
Вона використовує системні бібліотеки DXGI та Direct3D, щоб забезпечити надзвичайно швидку та надійну функціональність захоплення екрану.
#practice // Архів книг // PythonPyGame Zero — ця бібліотека розроблена для освітніх завдань, тому текст документації буде зрозумілим навіть для новачків у програмуванні.
Мова: 🇺🇦
Автор: Дист Освіта
#lessons // Архів книг // Pythonsys є зручна змінна version_info, яка містить у собі версію Python, за допомогою якого було запущено сценарій.
import sys
print(sys.version_info)
# sys.version_info(major=3, minor=8, micro=2, releaselevel='final', serial=0)
elif not sys.version_info >= (3, 5):
print('Потрібна Python версії 3.5 або вище.')
Перевірка версії інтерпретатора може бути корисною у випадку, якщо ви використовуєте якісь фічі з нових версій мови.
#practice // Вакансії IT // Pythonrandom є функція randint, яка видає випадкові числа.
>>> import random
>>>
>>> random.randint(3, 9)
5
>>> random.randint(1, 100)
66
Діапазон отримуваного числа визначається за допомогою двох аргументів: нижня і верхня межі у вигляді цілих чисел.
#practice // Архів книг // Pythonimport inspect
import random
class A:
def B():
pass
def C():
pass
print(inspect.ismodule(random)) # True
print(inspect.isclass(A)) # True
print(inspect.ismethod(A.B)) # True
print(inspect.isfunction(C)) # True
Функції ismodule(), isclass(), ismethod() і isfunction() перевіряють переданий об'єкт на те, чи є він модулем, класом, методом чи функцією відповідно.
#practice // Вакансії IT // Pythonprocmaps для Python мовою Rust — для прив'язок в ній застосовано PyO3, а для керування збіркою — maturin (а також для wheel-пакування, що сумісне з manylinux1).
Мова: 🇺🇦
#theory // Архів книг // Python