Pythonist.ru - образование по питону
Pythonist.ru - помощь в подготовке к собеседованию на позицию Python Developer. Реклама: @anothertechrock РКН: https://rknn.link/car
Mostrar más📈 Análisis del canal de Telegram Pythonist.ru - образование по питону
El canal Pythonist.ru - образование по питону (@pythonist_ru) en el segmento lingüístico de Ruso es un actor destacado. Actualmente la comunidad reúne a 24 394 suscriptores, ocupando la posición 5 602 en la categoría Tecnologías y Aplicaciones y el puesto 27 472 en la región Rusia.
📊 Métricas de audiencia y dinámica
Desde su creación el невідомо, el proyecto ha mostrado un crecimiento acelerado, reuniendo a 24 394 suscriptores.
Según los últimos datos del 10 junio, 2026, el canal mantiene una actividad estable. En los últimos 30 días la variación de miembros fue de -48, y en las últimas 24 horas de -9, conservando un alto alcance.
- Estado de verificación: No verificado
- Tasa de interacción (ER): El promedio de interacción de la audiencia es 6.76%. Durante las primeras 24 horas tras publicar, el contenido suele obtener 2.89% de reacciones respecto al total de suscriptores.
- Alcance de las publicaciones: Cada publicación recibe en promedio 1 649 visualizaciones. En el primer día suele acumular 705 visualizaciones.
- Reacciones e interacción: La audiencia responde de forma activa: el promedio de reacciones por publicación es 9.
- Intereses temáticos: El contenido se centra en temas clave como т.р, developer, строка, backend, true.
📝 Descripción y política de contenido
El autor describe el recurso como un espacio para expresar opiniones subjetivas:
“Pythonist.ru - помощь в подготовке к собеседованию на позицию Python Developer.
Реклама: @anothertechrock
РКН: https://rknn.link/car”
Gracias a la alta frecuencia de actualizaciones (últimos datos recibidos el 11 junio, 2026), el canal mantiene la vigencia y un amplio alcance. La analítica demuestra que la audiencia interactúa activamente con el contenido, lo que lo convierte en un punto de referencia dentro de la categoría Tecnologías y Aplicaciones.
s — квадрат
- c — круг
Если в функцию передана буква s, то второй аргумент, число, считается длиной стороны квадрата. В противном случае число считается радиусом круга.
При написании функции из операторов можно использовать только арифметические и операторы сравнения. То есть, никаких:
- инструкций if… else
- словарей
- лямбд
- методов форматирования
Цель — написать короткий код без ветвления. Округлять ничего не нужно.
Примеры:
perimeter("s", 7) ➞ 28
perimeter("c", 4) ➞ 25.12
perimeter("c", 9) ➞ 56.52
Решение на нашем сайте.
#задача #codingfrom collections import Counter
import re
text = """The Python Software Foundation (PSF) is a 501(c)(3) non-profit corporation that holds the intellectual property rights behind the Python programming language. We manage the open source licensing for Python version 2.1 and later and own and protect the trademarks associated with Python. We also run the North American PyCon conference annually, support other Python conferences around the world, and fund Python related development with our grants program and by funding special projects."""
words = re.findall('\w+', text)
print(Counter(words).most_common(10))
#coding #beginner[('Python', 6), ('the', 6), ('and', 5), ('We', 2), ('with', 2), ('The', 1), ('Software', 1), ('Foundation', 1), ('PSF', 1), ('is', 1)]
Текст:
The Python Software Foundation (PSF) is a 501(c)(3) non-profit corporation that holds the intellectual property rights behind the Python programming language. We manage the open source licensing for Python version 2.1 and later and own and protect the trademarks associated with Python. We also run the North American PyCon conference annually, support other Python conferences around the world, and fund Python related development with our grants program and by funding special projects.
Пишите ответы в комментариях, а мы свой вариант опубликуем завтра.
#coding #beginnerhistogram([1, 3, 4], "#") ➞ "#\n###\n####" # ### #### histogram([6, 2, 15, 3], "=") ➞ "======\n==\n===============\n===" ====== == =============== === histogram([1, 10], "+") ➞ "+\n++++++++++" + ++++++++++Решение на нашем сайте. #задача #coding
n = 5
for i in range(n):
for j in range(i):
print('* ', end="")
print('')
for i in range(n, 0, -1):
for j in range(i):
print('* ', end="")
print('')
#coding #beginner* * * * * * * * * * * * * * * * * * * * * * * * *Используйте вложенный цикл for. Пишите ответы в комментариях, а мы свой вариант опубликуем завтра. #coding #beginner
alternating_caps("Hello")
➞ "HeLlO"
alternating_caps("How are you?")
➞ "HoW aRe YoU?"
alternating_caps("OMG this website is awesome!")
➞ "OmG tHiS wEbSiTe Is AwEsOmE!"
Решение на нашем сайте.
#задача #coding
¡Ya disponible! Investigación de Telegram 2025 — los principales insights del año 
