Telegram RegisterThe public register of Telegram

Channel

Machinelearning tests

@Machinelearningtest

On this record: Growth · Engagement · What this channel posts · Posts · Polls · Citations · Cite this entry

662subscribers

+0 since we began measuring on 7 August 2026

Risers and fallers across the register · movement among entries of Under 1,000.

Register entry

Telegram ID-1001629174583
TypeChannel
Username@Machinelearningtest
DescriptionПо всем вопросам- @haarrp @ai_machinelearning_big_data - машинное обучение @programming_books_it - бесплатные it книги @pythonl - 🐍 @ArtificialIntelligencedl - AI @datascienceiot -ds книги
CreatedBetween 1 December 2021 and 30 November 2022— estimated from Telegram’s id allocation, not measured. How this range is calculated.
First recorded7 August 2026
Last confirmed live7 August 2026
Measurements held2
On Telegramt.me/Machinelearningtest

Growth

6627 Aug 2026, 08:21 — 662 subscribers7 Aug 2026, 08:48 — 662 subscribers7 Aug 2026, 08:217 Aug 2026, 08:48
2 measurements taken within a single day. 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 661–663 and does not start at zero.
Measurement log — every subscribers count we have recorded
Measured (UTC)SubscribersChange
7 Aug 2026, 08:48662no change
7 Aug 2026, 08:21662first reading

Engagement

20 posts held, back to 30 November 2022the reader has not yet reached the start of this channel’s public history, so older posts may sit further back, unread. Read across 1 pageof 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 20 posts for this entry, the most recent from 16 April 2025. An engagement rate over an empty window would be a number about nothing.

What this channel posts

Photos
35

Lifetime counters from Telegram’s own channel header, read 7 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.

Recent posts

16 Apr 2025, 13:01 UTC391 viewsread 7 August 2026

❓ Что выведет следующий код на Python (модуль statistics)? import statistics as stats import math data = [1, 2, 2, float('nan'), 3, 4] print("Mean:", stats.mean(data)) print("Median:", stats.median(data)) print("Mode:", stats.mode(data)) 🔢 Варианты ответа: A) Median: 2.5 Mode: 2 B) Median: 2.5 Mode: 2 C)ValueError: nan is not a valid number D) Median: nan Mode: 2 ✅ Правильный ответ: C 💡 Почему? - М

25 Jul 2024, 12:02 UTC600 viewsread 7 August 2026

Что выведет код? ((lambda x: (lambda y: x ** y)) (3)) (2)

25 Jul 2024, 12:02 UTC656 viewsread 7 August 2026
Poll

Выберите правильный вариант

  1. 55%
  2. 611%
  3. 818%
  4. 931%
  5. SyntaxError24%
  6. Посмотреть результаты11%

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

18 Jul 2024, 16:43 UTC463 viewsread 7 August 2026

Что выведет код? import sys f = lambda x: list(map(sys.stdout.write, x)) t = f(['1', '2', '3'])

18 Jul 2024, 16:43 UTC615 viewsread 7 August 2026
Poll

Выберите правильный вариант

  1. [123]19%
  2. [321]7%
  3. 12326%
  4. 1 2 328%
  5. 3211%
  6. 3 2 11%
  7. Посмотреть результаты16%

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

18 Jul 2024, 16:36 UTC≈1,890 viewsread 7 August 2026

Что выведет код? def f(a: int = '1', b: int = '2', c: int = '3') -> int: return a + b + c print(f()) @Machinelearningtest - Тесты по машинному обучению и Python

18 Jul 2024, 16:36 UTC≈2,270 viewsread 7 August 2026
Poll

Выберите правильный вариант

  1. int5%
  2. str3%
  3. 624%
  4. 12340%
  5. TypeError17%
  6. SyntaxError6%
  7. Посмотреть результаты5%

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

11 Jun 2024, 14:34 UTC456 viewsread 7 August 2026
Poll

Какое выражение будет эквивалентным для тернарного оператора "b if a else с", считая, что переменные b и c содержат некоторые объекты, а переменная a - булево значение.

  1. a or b and c11%
  2. a and b and c9%
  3. a or b or c9%
  4. a or c and b2%
  5. a and b or c46%
  6. a and c or b6%
  7. Посмотреть результаты17%

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

31 May 2024, 17:33 UTC393 viewsread 7 August 2026

Что выведет код? def f(arr): return arr[0] if len(arr) == 1 else arr[0] + f(arr[1:]) print(f(('a', 'b', 'c', 'd')))

31 May 2024, 17:33 UTC438 viewsread 7 August 2026
Poll

Выберите правильный вариант

  1. abcd52%
  2. None5%
  3. TypeError5%
  4. IndexError20%
  5. ValueError11%
  6. Посмотреть результаты7%

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

31 Aug 2023, 15:58 UTC652 viewsread 7 August 2026

Дан код и вывод class A: def __init__(self, x): self.x = x def __call__(self): return self.x class B: def __init__(self, x): self.x = x def method(self): return self.x class C: def __init__(self, x=3): self.x = x def __repr__(self): return str(self.x) a = A(1) b = B(2) c = C(3) callables = # ваш код print([act() for act in callables]) #Вывод:

31 Aug 2023, 15:58 UTC738 viewsread 7 August 2026
Poll

Какое значение нужно записать в переменную callables

  1. [a, b, C]9%
  2. [A, B, C]18%
  3. [a, b.method, C]28%
  4. [a.__init__, b.method, C]18%
  5. [a, b, C.__repr__]5%
  6. Посмотреть результаты23%

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

Showing the 12 most recent of 20 posts we hold for @Machinelearningtest. 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 most recent of 10 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.

25 Jul 2024, 12:02 UTCAnonymous Quiz88 voters

Выберите правильный вариант

  1. 55%
  2. 611%
  3. 818%
  4. 931%
  5. SyntaxError24%
  6. Посмотреть результаты11%

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

18 Jul 2024, 16:43 UTCAnonymous Quiz68 voters

Выберите правильный вариант

  1. [123]19%
  2. [321]7%
  3. 12326%
  4. 1 2 328%
  5. 3211%
  6. 3 2 11%
  7. Посмотреть результаты16%

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

18 Jul 2024, 16:36 UTCAnonymous Quiz513 voters

Выберите правильный вариант

  1. int5%
  2. str3%
  3. 624%
  4. 12340%
  5. TypeError17%
  6. SyntaxError6%
  7. Посмотреть результаты5%

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

11 Jun 2024, 14:34 UTCAnonymous Quiz54 voters

Какое выражение будет эквивалентным для тернарного оператора "b if a else с", считая, что переменные b и c содержат некоторые объекты, а переменная a - булево значение.

  1. a or b and c11%
  2. a and b and c9%
  3. a or b or c9%
  4. a or c and b2%
  5. a and b or c46%
  6. a and c or b6%
  7. Посмотреть результаты17%

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

31 May 2024, 17:33 UTCAnonymous Quiz56 voters

Выберите правильный вариант

  1. abcd52%
  2. None5%
  3. TypeError5%
  4. IndexError20%
  5. ValueError11%
  6. Посмотреть результаты7%

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

31 Aug 2023, 15:58 UTCAnonymous Quiz57 voters

Какое значение нужно записать в переменную callables

  1. [a, b, C]9%
  2. [A, B, C]18%
  3. [a, b.method, C]28%
  4. [a.__init__, b.method, C]18%
  5. [a, b, C.__repr__]5%
  6. Посмотреть результаты23%

Shares as published, totalling 101%. 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 20 most recent posts we hold, published 30 November 2022 to 16 April 2025. 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 — 1,147,947 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.

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.

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 7 August 2026 — this entry's latest reading, not the date you are reading this.

“Machinelearning tests” (@Machinelearningtest), 662 subscribers as measured 7 August 2026. Telegram Register, tgregister.com/channel/Machinelearningtest.

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.