Telegram RegisterThe public register of Telegram

Channel

Learn Coding

@Crypto_Whale12

On this record: Growth · Engagement · What this channel posts · Reactions · Posts · Citations · Handles named that no longer answer · Cite this entry

331subscribers

+1 since we began measuring on 6 August 2026

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

Register entry

Telegram ID-1001870974326
TypeChannel
Username@Crypto_Whale12
DescriptionJoin the following NOW👇👇 https://t.me/addlist/agGefKfwKRkzYTY8
CreatedBetween 1 October 2022 and 30 September 2023— estimated from Telegram’s id allocation, not measured. How this range is calculated.
First recorded6 August 2026
Last confirmed live6 August 2026
Measurements held3
On Telegramt.me/Crypto_Whale12

Growth

330331330.56 Aug 2026, 02:23 — 330 subscribers6 Aug 2026, 08:50 — 331 subscribers6 Aug 2026, 21:47 — 331 subscribers6 Aug 2026, 02:236 Aug 2026, 21:47
3 measurements taken within a single day, net +1. 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 330–331 and does not start at zero.
Measurement log — every subscribers count we have recorded
Measured (UTC)SubscribersChange
6 Aug 2026, 21:47331no change
6 Aug 2026, 08:50331+1
6 Aug 2026, 02:23330first reading

Engagement

20 posts held, back to 13 December 2024the 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 24 December 2024. An engagement rate over an empty window would be a number about nothing.

What this channel posts

Videos
2
Links
6

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

20 reactions across 10 posts, in 1 kind.

Every reaction kind recorded on the sample, most used first
ReactionCountShareShare, drawn
❤‍🔥20100.0%

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 10 of the 20 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 20reactions in total: the kind of figure the paragraph above means by “a reaction total printed elsewhere on the page”.

Measured over the 20 most recent posts we hold, published 13 December 2024 to 24 December 2024, 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

17 Dec 2024, 07:20 UTC398 views2 reactionsread 6 August 2026

def greet_person(name, age): print(f"Hello, {name}! You are {age}.") # Reusing the same function with different data greet_person("Emma", 28) greet_person("John", 40) ________________________________________ Passing Data of Different Types Functions can handle various types of data (strings, integers, etc.): def describe_person(name, age): print(f"{name} is {str(age)} years old.") describe_person("Anna", 3

❤‍🔥2

17 Dec 2024, 06:57 UTC316 viewsread 6 August 2026

# Function with two parameters def say_hi(name, age): print(f"Hello, {name}! You are {age} years old.") # Calling the function with different inputs say_hi("Mike", 35) # Output: Hello, Mike! You are 35 years old. say_hi("Steve", 70) # Output: Hello, Steve! You are 70 years old.

17 Dec 2024, 06:56 UTC294 viewsread 6 August 2026

# Function with one parameter def say_hi(name): print(f"Hello, {name}!") # Calling the function with different names say_hi("Mike") # Output: Hello, Mike! say_hi("Steve") # Output: Hello, Steve!

17 Dec 2024, 06:36 UTC263 viewsread 6 August 2026

# Defining a function def say_hi(): print("Hello, User!") # This line is indented and part of the function # Calling the function say_hi() # Output: Hello, User!

17 Dec 2024, 06:32 UTC200 viewsread 6 August 2026

# A tuple coordinates = (4, 5) # A list mutable_coordinates = [4, 5] # Modifying a list mutable_coordinates[1] = 10 # This works for a list print(mutable_coordinates) # Output: [4, 10] # Modifying a tuple (causes an error) # coordinates[1] = 10 # This will raise a TypeError

17 Dec 2024, 06:28 UTC158 viewsread 6 August 2026

friends = ["Kevin", "Karen", "Jim"] print(friends) # Output: ['Kevin', 'Karen', 'Jim']

17 Dec 2024, 06:28 UTC150 viewsread 6 August 2026

print(friends[0]) # Output: Kevin (1st element) print(friends[2]) # Output: Jim (3rd element) # Access elements using negative indexes print(friends[-1]) # Output: Jim (last element) print(friends[-2]) # Output: Karen (2nd last element)

17 Dec 2024, 06:28 UTC147 viewsread 6 August 2026

print(friends[1:4]) # Output: ['Karen', 'Jim', 'Oscar'] print(friends[2:]) # Output: ['Jim', 'Oscar', 'Pam']

17 Dec 2024, 06:28 UTC147 viewsread 6 August 2026

• list[start:end] grabs elements from start up to (but not including) end. • list[start:] grabs all elements from start to the end.

17 Dec 2024, 06:28 UTC187 viewsread 6 August 2026

lucky_numbers = [4, 8, 15, 16, 23, 42] friends = ["Kevin", "Karen", "Jim", "Oscar", "Toby"] # 1. Print the list print(friends) # Output: ['Kevin', 'Karen', 'Jim', 'Oscar', 'Toby'] # 2. Extend: Combine two lists friends.extend(lucky_numbers) print(friends) # Combines friends and lucky_numbers into one list # 3. Append: Add a single item at the end friends.append("Creed") print(friends) # Adds "Creed" to the end

13 Dec 2024, 17:21 UTC155 viewsread 6 August 2026

# Get the first number and convert to a float num1 = float(input("Enter the first number: ")) # Get the second number and convert to a float num2 = float(input("Enter the second number: ")) # Add the numbers and store the result result = num1 + num2 # Print the result print("The result is:", result)

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

Citation-graph rank

Citation-graph rank — 136,892 of 1,169,250entries 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

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.

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

“Learn Coding” (@Crypto_Whale12), 331 subscribers as measured 6 August 2026. Telegram Register, tgregister.com/channel/Crypto_Whale12.

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.