#quiz

Channel
Python Universe
@pythontg
On this record: Growth · Engagement · Posts · Polls · Cite this entry
1,758subscribers
-19 since we began measuring on 7 August 2026
Risers and fallers across the register · movement among entries of 1,000–3,162.
Register entry
| Telegram ID | -1001233003721 |
|---|---|
| Type | Channel |
| Username | @pythontg |
| Created | Between 1 March 2018 and 31 July 2021 — estimated from Telegram’s id allocation, not measured. How this range is calculated. |
| First recorded | 7 August 2026 |
| Last confirmed live | 6 September 2026 |
| Measurements held | 10 |
| Confirmed unchanged | 1 time, most recently 6 September 2026 |
| On Telegram | t.me/pythontg |
Growth
| Measured (UTC) | Subscribers | Change |
|---|---|---|
| 6 Sept 2026, 12:17 | 1,758 | -1 |
| 2 Sept 2026, 01:05 | 1,759 | -3 |
| 30 Aug 2026, 10:56 | 1,762 | -2 |
| 24 Aug 2026, 10:36 | 1,764 | -2 |
| 20 Aug 2026, 11:47 | 1,766 | -3 |
| 17 Aug 2026, 11:19 | 1,769 | -5 |
| 13 Aug 2026, 17:45 | 1,774 | -1 |
| 10 Aug 2026, 12:36 | 1,775 | -2 |
| 7 Aug 2026, 04:16 | 1,777 | no change |
| 7 Aug 2026, 04:05 | 1,777 | first reading |
Engagement
19 posts held, back to 31 July 2021 — the reader has not yet reached the start of this channel’s public history, so older posts may sit further back, unread. Read across 2 pages of Telegram’s post history, 20 posts per page.
Nothing published in the last 30 days. ERR and ER are rolling 30-day measures, so there is nothing to compute — we hold 19 posts for this entry, the most recent from 20 November 2021. An engagement rate over an empty window would be a number about nothing.
Recent posts
What's the output of the code given above?
- 1 2 3 417%
- 2 3 433%
- None 2 3 417%
- None 2 310%
- 2 4 316%
- None 1 2 3 47%
Shares as published. No per-option vote count is published by Telegram, so none is shown.
Working With Zip Files in Python 📕 The ZIP file format is a common archive and compression standard. The in-built zipfile module provides tools to create, read, write, append, and list a ZIP file. The most common class which is used to work with Zip Files is ZipFile class. It is used to write and read the Zip files and also has some methods which are used to handle the them. 🔗Gees For Geeks tutorial #zipfile
What is the output of the code given above?
- [1, 2, 3, 12]34%
- [12, 1, 2, 3]7%
- [4, 1, 2, 3]5%
- [1, 2, 3, 4]18%
- Error36%
Shares as published. No per-option vote count is published by Telegram, so none is shown.
#quiz
10 Ways to Speed Up Your Python Code ⚡️ 1. List Comprehensions numbers = [x**2 for x in range(100000) if x % 2 == 0] instead of numbers = [] for x in range(100000): if x % 2 == 0: numbers.append(x**2) 2. Use the Built-In Functions Many of Python’s built-in functions are written in C, which makes them much faster than a pure python solution. 3. Function Calls Are Expensive Function calls are expensive i…
#quiz
What's the output of the code given above?
- ['mango', 'kiwifruit', 'banana']15%
- ['mango', [], 'kiwifruit', 'banana']24%
- ['mango', [], 'banana']25%
- ['mango', 'carrot', 'kiwifruit', 'banana']10%
- []13%
- Error13%
Shares as published. No per-option vote count is published by Telegram, so none is shown.
Create Beautiful Diagrams with Python 📊 🔸Diagrams is a Python library which lets you draw the cloud system architecture in Python code. It was born for prototyping a new system architecture design without any design tools. You can also describe or visualize the existing system architecture as well. As you can see from the example above, it's extremely simple to create your own customized diagram. See more examples …
#quiz
What is the output of the code given above?
- {3, 4, 5, 6}7%
- {}15%
- {1, 2}25%
- {1, 2, 3, 4, 5, 6}22%
- {1, 2, 3, 4}10%
- {3, 4, 5, 6}5%
- Error16%
Shares as published. No per-option vote count is published by Telegram, so none is shown.
Complex Numbers in Python 🐍 Most general-purpose programming languages have either no support or limited support for complex numbers. Python is a rare exception because it comes with complex numbers built in. The quickest way to define a complex number in Python is by typing its literal directly in the source code: >>> z1 = 1 + 2j You can also use a built-in Python function, complex(). It accepts two numeric param…
Showing the 12 most recent of 19 posts we hold for @pythontg. 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 6 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.
What's the output of the code given above?
- 1 2 3 417%
- 2 3 433%
- None 2 3 417%
- None 2 310%
- 2 4 316%
- None 1 2 3 47%
Shares as published. No per-option vote count is published by Telegram, so none is shown.
What is the output of the code given above?
- [1, 2, 3, 12]34%
- [12, 1, 2, 3]7%
- [4, 1, 2, 3]5%
- [1, 2, 3, 4]18%
- Error36%
Shares as published. No per-option vote count is published by Telegram, so none is shown.
What's the output of the code given above?
- ['mango', 'kiwifruit', 'banana']15%
- ['mango', [], 'kiwifruit', 'banana']24%
- ['mango', [], 'banana']25%
- ['mango', 'carrot', 'kiwifruit', 'banana']10%
- []13%
- Error13%
Shares as published. No per-option vote count is published by Telegram, so none is shown.
What is the output of the code given above?
- {3, 4, 5, 6}7%
- {}15%
- {1, 2}25%
- {1, 2, 3, 4, 5, 6}22%
- {1, 2, 3, 4}10%
- {3, 4, 5, 6}5%
- Error16%
Shares as published. No per-option vote count is published by Telegram, so none is shown.
What is the output of the code given above?
- [1, 2, 3, [4, 5, 6]]40%
- [1, 2, 3, 4, 5, 6]46%
- [1, 2, 3]10%
- None1%
- Error3%
Shares as published. No per-option vote count is published by Telegram, so none is shown.
What us the output of the code given above?
- 1 1 113%
- 0 0 015%
- None None None9%
- 1 3 None22%
- 1 3 128%
- 0 3 03%
- Error10%
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 19 most recent posts we hold, published 31 July 2021 to 20 November 2021. 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.
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 6 September 2026 — this entry's latest reading, not the date you are reading this.
“Python Universe” (@pythontg), 1,758 subscribers as measured 6 September 2026. Telegram Register, tgregister.com/channel/pythontg.
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.