Telegram RegisterThe public register of Telegram
Telegram profile photo for Learn Coding

Channel

Learn Coding

@Crypto_Whale12

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

324subscribers

-6 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
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 live11 September 2026
Measurements held8
Confirmed unchanged1 time, most recently 11 September 2026
On Telegramt.me/Crypto_Whale12

Growth

3233313276 August 2026 — 330 subscribers6 August 2026 — 331 subscribers6 August 2026 — 331 subscribers14 August 2026 — 330 subscribers20 August 2026 — 325 subscribers27 August 2026 — 323 subscribers4 September 2026 — 325 subscribers11 September 2026 — 324 subscribers3246 August 202611 September 2026
8 measurements spanning 37 days, net -6. 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 322–332 and does not start at zero.
Measurement log — every subscribers count we have recorded
Measured (UTC)SubscribersChange
11 Sept 2026, 20:42324-1
4 Sept 2026, 06:36325+2
27 Aug 2026, 10:03323-2
20 Aug 2026, 19:02325-5
14 Aug 2026, 07:47330-1
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 page 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 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.

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 20 reactions 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.

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

“Learn Coding” (@Crypto_Whale12), 324 subscribers as measured 11 September 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.