Telegram RegisterThe public register of Telegram

Channel

Python Learning

@python_bds

On this record: Growth · Engagement · What this channel posts · Reactions · Posts · Polls · Citations · Telegram's recommendations · Cite this entry

5,844subscribers

+5 since we began measuring on 7 August 2026

Risers and fallers across the register · movement among entries of 3,162–10,000.

Register entry

Telegram ID-1001718432323
TypeChannel
Username@python_bds
DescriptionPython learning resources Beginner to advanced Python guides, cheatsheets, books and projects. For data science, backend and automation. Join 👉 https://rebrand.ly/bigdatachannels DMCA: @disclosure_bds Contact: @mldatascientist
CreatedBetween 1 December 2021 and 31 March 2023— estimated from Telegram’s id allocation, not measured. How this range is calculated.
First recorded7 August 2026
Last confirmed live10 August 2026
Measurements held4
Confirmed unchanged1 time, most recently 10 August 2026
On Telegramt.me/python_bds

Growth

5,8395,8445,841.57 August 2026 — 5,839 subscribers7 August 2026 — 5,839 subscribers7 August 2026 — 5,840 subscribers10 August 2026 — 5,844 subscribers7 August 202610 August 2026
4 measurements spanning 3 days, net +5. Dots are measurements; the straight line between them is drawn to join them, not to claim we know the path taken in between — snapshots are recorded only when a count changes, so gaps mean “no change observed”, never “interpolated”. The vertical axis spans 5,838–5,845 and does not start at zero.
Measurement log — every subscribers count we have recorded
Measured (UTC)SubscribersChange
10 Aug 2026, 19:255,844+4
7 Aug 2026, 23:445,840+1
7 Aug 2026, 10:005,839no change
7 Aug 2026, 09:535,839first reading

Engagement

22 posts held, back to 12 July 2026the reader has not yet reached the start of this channel’s public history, so older posts may sit further back, unread. Read across 9 pagesof Telegram’s post history, 20 posts per page.

ERR · 30 days
7.81%
avg views ÷ 5,844 subscribers
Avg views / post
456
20 posts measured
Reaction rate
0.688%
reactions ÷ views · ER floor
Posts in window
20
of 22 held

ERR is average views per post over the last 30 days divided by subscribers, the definition TGStat uses, so this figure is comparable with the one you will see elsewhere. It falls structurally as a channel grows: a high ERR on a small channel and a low one on a large channel describe reach mathematics, not quality. We publish the figure and the sample it came from and pass no verdict on it.

ER is defined industry-wide as (forwards + reactions + comments) ÷ views— note the denominator is views, not subscribers. Telegram’s public web preview carries views and reactions but not forward or comment counts, so the reaction rate above is the reactions term only and is therefore a floor: the true ER for this channel is higher by an amount we have not measured and will not estimate. It is computed over the 18 of 20 measured posts that carry a reaction reading, and over those same posts' views.

What these figures were computed from
WindowRolling 30 days · latest post in window 10 August 2026
Posts held22 (12 July 202610 August 2026)
Views total9,127
Reactions total58
Forwards / commentsnot exposed by the public surface — not measured, not estimated
Readings taken12 Aug 2026, 03:48 UTC

Views are a single reading per post, taken at the time above. A post published in the last day or two is still accumulating views, which pulls the 30-day average down slightly. That is a property of the standard definition rather than a fault in it, so we keep the definition rather than “correcting” the number into something nobody can reproduce.

Precision. Telegram publishes view counts on its public widget in short form — 8.12K, 3.7M — so any reading at or above 1,000 reaches us rounded to three significant figures, and only counts below 1,000 are exact. Averages and rates derived from them are shown to the same precision rather than to the unit: a figure like 3,701,250 would assert digits nobody measured.

Reaction counts are published per emoji and rounded the same way, so a total below 1,000 is exact and a larger one is a sum that may carry a rounded component from each emoji above 1,000. Because it is a sum, it does not look rounded — read a large reaction total as three significant figures per contributing emoji rather than as the figure it prints.

What this channel posts

Photos
564
Videos
2
Links
128

Lifetime counters from Telegram’s own channel header, read 12 August 2026 — not the date at the top of this page, which is when the subscriber count was last read. Below Telegram’s rounding threshold, so these counts are exact.

Reaction mix

66 reactions across 20 posts, in 4 distinct kinds. The most used accounts for 75.8% of them.

Every reaction kind recorded on the sample, most used first
ReactionCountShareShare, drawn
5075.8%
🔥913.6%
👍46.06%
🥰34.55%

No sentiment is inferred, and none should be read in. This table is ordered by count and by nothing else. Emoji do not carry stable meaning across languages or communities — 🙏 is thanks in one channel and mourning in another — so we publish which ones were pressed and how often, and pass no judgement on what an audience meant by them.

Precision. Telegram publishes reaction counts per emoji and short-forms each one — 4.34K, 1.2M — so any single kind at or above 1,000 reaches us at three significant figures, and only counts below 1,000 are exact. The shares above are ratios of those figures and carry the same error. This is also why the total here can differ slightly from a reaction total printed elsewhere on the page: both are sums of the same rounded parts, taken over samples with different edges.

Coverage. Reactions were read on 20 of the 22 sampled posts in this sample. Summed by Telegram’s own count on each post — not by adding up the per-emoji breakdown above — those same posts carry 66reactions in total: the kind of figure the paragraph above means by “a reaction total printed elsewhere on the page”.

Measured over the 22 most recent posts we hold, published 12 July 2026 to 10 August 2026, using the newest reading held for each. Telegram Stars are excluded: they are a payment, not a reaction, and they have their own section.

Recent posts

10 Aug 2026, 08:01 UTC140 views2 reactionsread 12 August 2026

🚀 Python Time Complexity Cheat Sheet ✅ List • Access by index → O(1) • Append → O(1) • Insert at beginning → O(n) • Delete from middle → O(n) • Search (in) → O(n) Best for: Ordered collections where fast indexing matters. ✅ Dictionary (dict) • Lookup → O(1) • Insert → O(1) • Update → O(1) • Delete → O(1) Best for: Fast lookups using keys. ✅ Set • Add → O(1) • Remove → O(1) • Membership test → O(1) Best for: Removi

2

8 Aug 2026, 09:35 UTC209 views3 reactionsread 12 August 2026

📖 Reading Python Error Messages Suppose you see this. TypeError: 'NoneType' object is not iterable Instead of guessing, break it down. TypeError → You're performing an operation on an incompatible type. NoneType → The value is None. not iterable → Python expected something it could loop over, like a list or tuple. A common cause: def get_users(): print("Loading users...") for user in get_users(): print(us

3

6 Aug 2026, 11:04 UTC259 views3 reactionsread 12 August 2026

🐍 15 Python Built-in Functions Every Developer Should Know You don't always need another library. Python already ships with powerful built-in functions that can make your code cleaner, shorter, and faster. 1. enumerate() - Loop through items while automatically keeping track of their index. 2. zip() - Combine multiple lists together element by element. 3. map() - Apply the same function to every item in an itera

3

6 Aug 2026, 08:26 UTC212 viewsread 12 August 2026
Forwarded from @programming_quizzPoll

What is the biggest advantage of using a set instead of a list when checking whether an item exists?

  1. Sets preserve insertion order better22%
  2. Sets allow duplicate values7%
  3. Membership checks are typically much faster40%
  4. Sets use less memory in every situation31%

Shares as published. No per-option vote count is published by Telegram, so none is shown.

4 Aug 2026, 14:03 UTC307 views3 reactionsread 12 August 2026
Photo

A Japanese AI company called Preferred Networks has a mature open-source library for NumPy/SciPy calculations on GPUs. It's called CuPy 🚀. For massive datasets, it is often enough to replace a single line: import cupy as cp The same array operations can run on CUDA up to 100 times faster. What it can do: 🛠 Highly compatible with existing NumPy and SciPy code 📝 Dramatically reduces the need to rewrite code or learn

3

31 Jul 2026, 13:59 UTC462 views4 reactionsread 12 August 2026
Photo

📘 Biopython: Tutorial and Cookbook ✍️ Authors: Jeff Chang, Brad Chapman, Iddo Friedberg, Thomas Hamelryck, Michiel de Hoon, Peter Cock, Tiago Antao, Eric Talevich, Bartek Wilczyński 🔗 Read Online #Python ──────────────────── 👉 @free_programming_books_bds 👈

4

31 Jul 2026, 07:44 UTC469 views3 reactionsread 12 August 2026

The Unofficial Python Graph Gallery If you work with data, you already know the pain of making charts look decent in Python. You spend 5 minutes writing the logic to process your data, and then 45 minutes wrestling with matplotlib or seaborn trying to figure out why your labels are overlapping, how to change a specific hex color, or how to remove those ugly default borders. This repository completely solves that. I

3

25 Jul 2026, 07:24 UTC592 views3 reactionsread 12 August 2026

Python Web Scraping This learning path you’ll learn the core Python technologies and skills you need to build your own web scraper. Web scraping is about downloading structured data from the web and processing selected data. 👉 You should already be comfortable writing Python scripts 🔗 Learn Here

3

24 Jul 2026, 09:03 UTC530 views2 reactionsread 12 August 2026

📦 The Difference Between a Package and a Module These terms get mixed up a lot. 📗A module is a single Python file. math.py 📚A package is a folder containing multiple modules. utils/ helpers.py parser.py formatter.py Think of it like this: 📖 Module = One book 📚 Package = An entire bookshelf

👍2

Showing the 12 most recent of 22 posts we hold for @python_bds. View and reaction counts are the latest single reading for each post, not a live figure, and a recent post is still accumulating both. A view count marked was rounded by Telegram before we ever saw it — t.me prints views in full below 1,000 and to three significant figures above, so ≈1,200,000 means somewhere between 1,150,000 and 1,249,999. Unmarked counts are exact. Text is reproduced from the public post preview and truncated for length.

Polls

The 2 polls we hold for this entry, as Telegram rendered them when we read the post. A poll’s figures keep moving after that, so each one is dated.

6 Aug 2026, 08:26 UTCAnonymous Quiz45 voters

What is the biggest advantage of using a set instead of a list when checking whether an item exists?

  1. Sets preserve insertion order better22%
  2. Sets allow duplicate values7%
  3. Membership checks are typically much faster40%
  4. Sets use less memory in every situation31%

Shares as published. No per-option vote count is published by Telegram, so none is shown.

23 Jul 2026, 12:30 UTCAnonymous Quiz69 voters

Which statement about Python tuples is true?

  1. They cannot contain duplicate values25%
  2. They can only store numbers4%
  3. They are always sorted automatically7%
  4. They are immutable after creation64%

Shares as published. No per-option vote count is published by Telegram, so none is shown.

Percentages only — there are no per-option vote counts here, because Telegram publishes none.The public post preview gives each option’s share and a single voter total, and nothing else. Multiplying one by the other would produce a per-option tally that looks measured and is not: the shares are rounded to whole numbers before we ever see them. We print what was published and leave the column that does not exist empty.

The shares need not add up to 100.Rounding alone puts many polls at 99 or 101. A poll that allows more than one answer per voter runs well past 100 by design, and several here do. The bars are drawn against a fixed 100% track at each option’s own percentage rather than normalised to the total, so a poll that exceeds it shows that it does instead of being quietly rescaled.

Read from the 22 most recent posts we hold, published 12 July 2026 to 10 August 2026. Telegram labels each poll by kind — an anonymous poll, a quiz, a closed set of final results — and that label is reproduced rather than paraphrased.

Citation-graph rank

Citation-graph rank — 520,016 of 1,160,990entries in the measured graph. A weighted position computed from the forward and mention edges below — republished posts weigh more than named mentions — and recomputed periodically, over the whole graph. Published only as this ordinal position, never as a score: a position is a fact, and a score printed beside one channel’s name would read as a verdict this register does not make. The two counts beneath stay separate for the same reason mentions are never summed with forwards anywhere else on this page — a named-by count costs nothing to manufacture. The top 100 by this measure, or how it is computed.

Forward network

Republished by

Channels on the register that have forwarded this channel's posts into their own feed.

Republishes

Channels on the register whose posts this channel has forwarded.

Built only from forwarded posts we have actually read, on both sides. Coverage is early and deliberately incomplete: a missing link means we have not read the post that would prove it, never that the relationship does not exist. Counts are distinct forwarded posts observed, so they only ever go up as we read more.

Mentions

Named by 1 registered channel — every channel on the register whose own posts have named this one, by its current username or any other username it currently holds, merged from two separately captured readings of the same fact so a namer caught by only one of them is not missed and a namer both caught is not counted twice. A username this channel has since dropped is not matched — that handle may belong to someone else now, and crediting today’s namer to yesterday’s owner would misattribute it.

Named by

Channels on the register whose posts name this channel's handle.

A mention is a weaker signal than a forward and is counted separately for that reason — naming a channel is not republishing it, and a handle in a post body is easy to place deliberately. The post counts beside each row below are distinct posts in which the handle appeared, from posts we have read on both sides — the “Named by N registered channels” figure above is a different count, of distinct NAMING CHANNELS rather than posts, and is not the sum of the rows under it.

Appears in Telegram’s recommendations for other channels

The reverse of the list above, and a different kind of signal. This does not require this channel to have ever been asked about directly — each row below is a channel we DID ask Telegram about, whose Telegram-generated list happened to include this one. A channel can appear here with an empty list above it, because being named by someone else’s query is independent of having been queried itself.

Curious Coder
@Curious_Coder · 136,955
Telegram ranks this channel #52 of 75 here — alongside 74 others — read 13 August 2026
Computer Science and Programming
@computer_science_and_programming · 140,958
Telegram ranks this channel #59 of 87 here — alongside 86 others — read 13 August 2026
Coders World
@codersworld1 · 151,181
Telegram ranks this channel #75 of 83 here — alongside 82 others — read 12 August 2026
TheSanskaarSingh
@codeslearningTG · 269,931
Telegram ranks this channel #80 of 84 here — alongside 83 others — read 11 August 2026

This channel appears in 4 seed channels' Telegram-generated recommendation lists in total. Each is Telegram’s list for THAT channel, not this one — see how this is measured.

Cite this entry

A live page changes as we take new readings, so a citation should name the measurement it is based on, not just the URL. The line below cites the subscriber count as measured 10 August 2026 — this entry's latest reading, not the date you are reading this.

“Python Learning” (@python_bds), 5,844 subscribers as measured 10 August 2026. Telegram Register, tgregister.com/channel/python_bds.

Full measurement history, CC BY 4.0. Every reading this register holds for this entry, not just the latest one, as a dated, downloadable record: CSV · JSON. Free to use with attribution to tgregister.com. Each file carries its own generation timestamp, which is the figure to cite for exactly when the data was retrieved.