پایتون | Data Science | Machine Learning
◀️اینجا با تمرین و چالش با هم پایتون رو یاد می گیریم ⏮بانک اطلاعاتی پایتون پروژه / code/ cheat sheet +ویدیوهای آموزشی +کتابهای پایتون تبلیغات: @alloadv 🔁ادمین : @maryam3771
Mostrar más📈 Análisis del canal de Telegram پایتون | Data Science | Machine Learning
El canal پایتون | Data Science | Machine Learning (@python4all_pro) en el segmento lingüístico de Farsi es un actor destacado. Actualmente la comunidad reúne a 24 690 suscriptores, ocupando la posición 5 500 en la categoría Tecnologías y Aplicaciones y el puesto 13 686 en la región Irán.
📊 Métricas de audiencia y dinámica
Desde su creación el невідомо, el proyecto ha mostrado un crecimiento acelerado, reuniendo a 24 690 suscriptores.
Según los últimos datos del 20 junio, 2026, el canal mantiene una actividad estable. En los últimos 30 días la variación de miembros fue de 1 618, y en las últimas 24 horas de -4, conservando un alto alcance.
- Estado de verificación: No verificado
- Tasa de interacción (ER): El promedio de interacción de la audiencia es 3.34%. Durante las primeras 24 horas tras publicar, el contenido suele obtener 1.93% de reacciones respecto al total de suscriptores.
- Alcance de las publicaciones: Cada publicación recibe en promedio 825 visualizaciones. En el primer día suele acumular 477 visualizaciones.
- Reacciones e interacción: La audiencia responde de forma activa: el promedio de reacciones por publicación es 2.
- Intereses temáticos: El contenido se centra en temas clave como مصنوعی, دنیا, آموزش, پایتون, وبینار.
📝 Descripción y política de contenido
El autor describe el recurso como un espacio para expresar opiniones subjetivas:
“◀️اینجا با تمرین و چالش با هم پایتون رو یاد می گیریم
⏮بانک اطلاعاتی پایتون
پروژه / code/ cheat sheet
+ویدیوهای آموزشی
+کتابهای پایتون
تبلیغات:
@alloadv
🔁ادمین :
@maryam3771”
Gracias a la alta frecuencia de actualizaciones (últimos datos recibidos el 21 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.
from tkinter import *
import random
root = Tk()
# Defining the size, width=400, height=240
root.geometry('400x240')
# Title
root.title('Love Calculator❤️❤️')
def calculate_love():
# value will contain digits between 0-9
st = '0123456789'
# result will be in double digits
digit = 2
temp = "".join(random.sample(st, digit))
result.config(text=temp)
# Heading on Top
heading = Label(root, text='Love Calculator????')
heading.pack()
# Slot/input for the first name
slot1 = Label(root, text="Enter Your Name:")
slot1.pack()
name1 = Entry(root, border=5)
name1.pack()
# Slot/input for the partner name
slot2 = Label(root, text="Enter Your Curse Name:")
slot2.pack()
name2 = Entry(root, border=5)
name2.pack()
bt = Button(root, text="Calculate", height=1,
width=7, command=calculate_love)
bt.pack()
# Text on result slot
result = Label(root, text='Love Percentage between both of You:')
result.pack()
# Starting the GUI
root.mainloop()
#code
🆔 @Python4all_propython
import turtle import random import time from pygame import mixer # Adding music is optional as per your choice. mixer.init() mixer.music.load("happy-birthday-song.mp3") # add your music file name or path # sets background bg = turtle.Screen() bg.bgcolor("black") mixer.music.play() # Bottom Line 1 turtle.penup() turtle.goto(-170, -180) turtle.color("white") turtle.pendown() turtle.forward(350) # Mid Line 2 turtle.penup() turtle.goto(-160, -150) turtle.color("white") turtle.pendown() turtle.forward(300) # First Line 3 turtle.penup() turtle.goto(-150, -120) turtle.color("white") turtle.pendown() turtle.forward(250) bg.bgcolor("lightgreen") # Cake turtle.penup() turtle.goto(-100, -100) turtle.color("white") turtle.begin_fill() turtle.pendown() turtle.forward(140) turtle.left(90) turtle.forward(95) turtle.left(90) turtle.forward(140) turtle.left(90) turtle.forward(95) turtle.end_fill() bg.bgcolor("lightblue") # Candles turtle.penup() turtle.goto(-90, 0) turtle.color("red") turtle.left(180) turtle.pendown() turtle.forward(20) turtle.penup() turtle.goto(-60, 0) turtle.color("blue") turtle.pendown() turtle.forward(20) turtle.penup() turtle.goto(-30, 0) turtle.color("yellow") turtle.pendown() turtle.forward(20) turtle.penup() turtle.goto(0, 0) turtle.color("green") turtle.pendown() turtle.forward(20) turtle.penup() turtle.goto(30, 0) turtle.color("purple") turtle.pendown() turtle.forward(20) bg.bgcolor("orange") # Decoration colors = ["red", "orange", "yellow", "green", "blue", "purple", "black"] turtle.penup() turtle.goto(-40, -50) turtle.pendown() for each_color in colors: angle = 360 / len(colors) turtle.color(each_color) turtle.circle(10) turtle.right(angle) turtle.forward(10) bg.bgcolor("red") # Happy Birthday message with bouncing animation turtle.penup() turtle.goto(-150, 50) turtle.color("yellow") turtle.pendown() # ENTER YOUR NAME IN THE NAME PLACE turtle.write(arg=f"Happy Birthday CodeWithRandom!", align="center", font=("jokerman", 20, "normal")) time.sleep(1.5) # Bouncing Animation for _ in range(7): turtle.penup() turtle.goto(-150, 50) turtle.pendown() turtle.clear() turtle.penup() turtle.goto(-150, 50 - _ * 10) turtle.pendown() turtle.write(arg=f"Happy Birthday CodeWithRandom!", align="left", font=("jokerman", 20, "normal")) time.sleep(0.5) turtle.done()
#code
🆔 @Python4all_profrom PIL import Image
# https://t.me/pythondevelopersindia
in_img = 'input.png'
out_img = 'compressed.png'
# Open the image
with Image.open(in_img) as img:
# Save the compressed image
img.save(out_img, 'PNG', quality=80)
print(f"Image compressed successfully!")
#code
🆔 @Python4all_pro
¡Ya disponible! Investigación de Telegram 2025 — los principales insights del año 
