en
Feedback
PythonHub

PythonHub

Open in Telegram

Python.hub

Show more
The country is not specifiedTechnologies & Applications1 550

πŸ“ˆ Analytical overview of Telegram channel PythonHub

Channel PythonHub (@classes_by_pythonhub) in the English language segment is an active participant. Currently, the community unites 78 662 subscribers, ranking 1 550 in the Technologies & Applications category.

πŸ“Š Audience metrics and dynamics

Since its creation on Π½Π΅Π²Ρ–Π΄ΠΎΠΌΠΎ, the project has demonstrated rapid growth, gathering an audience of 78 662 subscribers.

According to the latest data from 14 March, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by -3 760 over the last 30 days and by 0 over the last 24 hours, overall reach remains high.

  • Verification status: Not verified
  • Engagement rate (ER): The average audience engagement rate is 0%. Within the first 24 hours after publication, content typically collects N/A% reactions from the total number of subscribers.
  • Post reach: On average, each post receives 0 views. Within the first day, a publication typically gains 0 views.
  • Reactions and interaction: The audience actively supports content: the average number of reactions per post is 0.

πŸ“ Description and content policy

The author describes the resource as a platform for expressing subjective opinions:
β€œPython.hub”

Thanks to the high frequency of updates (latest data received on 15 March, 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.

78 662
Subscribers
No data24 hours
-2 0177 days
-3 76030 days
Posts Archive
PythonHub
78 662
import turtle import math class SolarSystem: def init(self, width, height): self.thesun = None self.planets = [] self.ssturtle = turtle.Turtle() self.ssturtle.hideturtle() self.ssscreen = turtle.Screen() self.ssscreen.setworldcoordinates(-width/2.0,-height/2.0,width/2.0,height/2.0) self.ssscreen.tracer(50) def addPlanet(self, aplanet): self.planets.append(aplanet) def addSun(self, asun): self.thesun = asun def showPlanets(self): for aplanet in self.planets: print(aplanet) def freeze(self): self.ssscreen.exitonclick() def movePlanets(self): G = .1 dt = .001 for p in self.planets: p.moveTo(p.getXPos() + dt * p.getXVel(), p.getYPos() + dt * p.getYVel()) rx = self.thesun.getXPos() - p.getXPos() ry = self.thesun.getYPos() - p.getYPos() r = math.sqrt(rx2 + ry2) accx = G * self.thesun.getMass()*rx/r**3 accy = G * self.thesun.getMass()*ry/r**3 p.setXVel(p.getXVel() + dt * accx) p.setYVel(p.getYVel() + dt * accy) class Sun: def init(self, iname, irad, im, itemp): self.name = iname self.radius = irad self.mass = im self.temp = itemp self.x = 0 self.y = 0 self.sturtle = turtle.Turtle() self.sturtle.shape("circle") self.sturtle.color("Orange") def getName(self): return self.name def getRadius(self): return self.radius def getMass(self): return self.mass def getTemperature(self): return self.temp def getVolume(self): v = 4.0/3 * math.pi * self.radius**3 return v def getSurfaceArea(self): sa = 4.0 * math.pi * self.radius**2 return sa def getDensity(self): d = self.mass / self.getVolume() return d def setName(self, newname): self.name = newname def str(self): return self.name def getXPos(self): return self.x def getYPos(self): return self.y class Planet: def init(self, iname, irad, im, idist, ivx, ivy, ic): self.name = iname self.radius = irad self.mass = im self.distance = idist self.x = idist self.y = 0 self.velx = ivx self.vely = ivy self.color = ic self.pturtle = turtle.Turtle() self.pturtle.up() self.pturtle.color(self.color) self.pturtle.shape("circle") self.pturtle.goto(self.x,self.y) self.pturtle.down() def getName(self): return self.name def getRadius(self): return self.radius def getMass(self): return self.mass def getDistance(self): return self.distance def getVolume(self): v = 4.0/3 * math.pi * self.radius**3 return v def getSurfaceArea(self): sa = 4.0 * math.pi * self.radius**2 return sa def getDensity(self): d = self.mass / self.getVolume() return d def setName(self, newname): self.name = newname def show(self): print(self.name) def str(self): return self.name def moveTo(self, newx, newy): self.x = newx self.y = newy self.pturtle.goto(newx, newy) def getXPos(self): return self.x def getYPos(self): return self.y def getXVel(self): return self.velx def getYVel(self): return self.vely def setXVel(self, newvx): self.velx = newvx def setYVel(self, newvy): self.vely = newvy def createSSandAnimate(): ss = SolarSystem(2,2) sun = Sun("SUN", 5000, 10, 5800) ss.addSun(sun) m = Planet("MERCURY", 19.5, 1000, .25, 0, 2, "blue") ss.addPlanet(m) m = Planet("EARTH", 47.5, 5000, 0.3, 0, 2.0, "green") ss.addPlanet(m) m = Planet("MARS", 50, 9000, 0.5, 0, 1.63, "red") ss.addPlanet(m) m = Planet("JUPITER", 100, 49000, 0.7, 0, 1, "black") ss.addPlanet(m)

PythonHub
78 662

PythonHub
78 662
photo content

PythonHub
78 662
Want to know "Best YouTube Channels learn Python ?"
Anonymous voting

PythonHub
78 662
Run this code and send output

PythonHub
78 662
Top Website to Learn Python 😍 πŸ‘‡πŸ‘‡ . https://copyassignment.com/top-10-websites-to-learn-python-in-2022/ .

PythonHub
78 662
photo content

PythonHub
78 662
Want to know about Top Websites to learn Python for Free? πŸ€”
Anonymous voting

PythonHub
78 662
Hello, Everyone

PythonHub
78 662

PythonHub
78 662
photo content

PythonHub
78 662
Want free Python Certification Course? πŸ€”
Anonymous voting

PythonHub
78 662
Run this Code and send output screenshot

PythonHub
78 662
import turtle a=turtle.Turtle() a.getscreen().bgcolor("black") a.penup() a.goto(-200, 100) a.pendown() a.color("yellow") a.speed(25) def star(turtle, size): if size<=10: return else: turtle.begin_fill() for i in range (5): turtle.pensize(2) turtle.forward(size) star(turtle, size/3) turtle.left(216) turtle.end_fill() star(a, 360) turtle.done()

PythonHub
78 662
photo content

PythonHub
78 662
Want to know how to get Python Internship?πŸ€”
Anonymous voting

PythonHub
78 662
Run this Code and send output screenshot

PythonHub
78 662
from turtle import * speed(0) bgcolor('black') color('orange') hideturtle() n = 1 p = True while True: circle(n) if p: n = n - 1 else: n = n + 1 if n == 0 or n == 60: p = not p left(1) forward(3) done()