Python Portal
Всё самое интересное из мира Python Сотрудничество, реклама: @devmangx Менеджер: @Spiral_Yuri РКН: https://clck.ru/3GMMF6
Show more📈 Analytical overview of Telegram channel Python Portal
Channel Python Portal (@pythonportal) in the Russian language segment is an active participant. Currently, the community unites 50 928 subscribers, ranking 2 540 in the Technologies & Applications category and 12 053 in the Russia region.
📊 Audience metrics and dynamics
Since its creation on невідомо, the project has demonstrated rapid growth, gathering an audience of 50 928 subscribers.
According to the latest data from 30 August, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by -422 over the last 30 days and by -37 over the last 24 hours, overall reach remains high.
- Verification status: Not verified
- Engagement rate (ER): The average audience engagement rate is 9.45%. Within the first 24 hours after publication, content typically collects 4.69% reactions from the total number of subscribers.
- Post reach: On average, each post receives 4 811 views. Within the first day, a publication typically gains 2 390 views.
- Reactions and interaction: The audience actively supports content: the average number of reactions per post is 20.
- Thematic interests: Content is focused on key topics such as строка, none, true, модуль, peter.
📝 Description and content policy
The author describes the resource as a platform for expressing subjective opinions:
“Всё самое интересное из мира Python
Сотрудничество, реклама: @devmangx
Менеджер: @Spiral_Yuri
РКН: https://clck.ru/3GMMF6”
Thanks to the high frequency of updates (latest data received on 31 August, 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.
1. Подсчёт endpoints (как и сколько endpoints будет у Service) 2. Ждём чуда (как работает shutdown) 3. Я сказал стоп (как «оттянуть» время удаления Pod) 4. Проектирование shared-кластеров (какую архитектуру выбрать) 5. Kernel panic (время паниковать?) 6. Прыгай, кролик 7. Сколько — это слишком много 8. Держим свет включённым 9. Прожорливый etcd 10. Умножение pod’ов 11. В одиночку 12. Rollin’ 13. All you can eat 14. Bounce 15. В кроличью нору 16. Throttled 17. Липкий бардак 18. Жив или мёртв 19. Связанный по рукам 20. Один, чтобы связать их всехДля каждого задания приводится условие, варианты ответов и непосредственно ответ с пояснениями 😏 👉 @PythonPortal
# Чтение всех тикетов
class CloseAllTickets:
def execute(self):
session = sessionLocal()
# список всех тикетов
tickets = session.query(Ticket).all()
# закрытие тикетов
for ticket in tickets:
ticket.status = "CLOSED"
# сохранение тикетов
session.add_all(tickets)
session.commit()
Хороший пример:
Читатель может сосредоточиться на логике высокого уровня и проверять детали низкого уровня только при необходимости
class CloseAllTickets:
def execute(self):
session = sessionLocal()
tickets = self._list_tickets(session)
self._close_tickets(tickets)
self._save_tickets(session, tickets)
def _list_tickets(self, session):
return session.query(Ticket).all()
def _close_tickets(self, tickets):
for ticket in tickets:
ticket.status = "CLOSED"
def _save_tickets(self, session, tickets):
session.add_all(tickets)
session.commit()
Здесь каждый шаг вынесен в отдельную функцию
👉 @PythonPortalitermonthdays4.
Возвращаемые значения будут кортежами, где содержатся год, месяц, день месяца и номер дня недели.
👉 @PythonPortal1. Создание массивов и атрибуты - np.array() — создать массив из списка/кортежа - np.zeros() — массив из нулей - np.ones() — массив из единиц - np.arange() — последовательность с шагом - np.shape() — размерность массива - np.dtype() — тип данных массива 2. Манипуляции с массивами и ресейпинг - np.reshape() — изменить размерность - np.concatenate() — объединить массивы по оси - np.vstack() — объединить по вертикали - np.hstack() — объединить по горизонтали - np.split() — разделить по индексам - np.transpose() — транспонировать - np.resize() — изменить размер 3. Статистический анализ - np.sum() — сумма элементов - np.mean() — среднее - np.median() — медиана - np.std() — стандартное отклонение - np.var() — дисперсия - np.cov() — ковариационная матрица - np.corrcoef() — коэффициенты корреляции - np.min() — минимум - np.max() — максимум - np.random.rand() — случайные числа 0–1 - np.random.randn() — нормальное распределение - np.histogram() — гистограмма 4. Индексация и фильтрация - np.extract() — выбрать по условию - np.where() — вернуть элементы по условию - np.isnan() — проверка NaN - np.sort() — сортировка - np.unique() — уникальные значения 5. Работа с файлами - np.save() — сохранить в .npy - np.load() — загрузить из .npy👉 @PythonPortal
