Data Science & Machine Learning
Join this channel to learn data science, artificial intelligence and machine learning with funny quizzes, interesting projects and amazing resources for free For collaborations: @love_data
Show more๐ Analytical overview of Telegram channel Data Science & Machine Learning
Channel Data Science & Machine Learning (@datasciencefun) in the English language segment is an active participant. Currently, the community unites 75 645 subscribers, ranking 2 114 in the Education category and 4 359 in the India region.
๐ Audience metrics and dynamics
Since its creation on ะฝะตะฒัะดะพะผะพ, the project has demonstrated rapid growth, gathering an audience of 75 645 subscribers.
According to the latest data from 11 June, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by 911 over the last 30 days and by 29 over the last 24 hours, overall reach remains high.
- Verification status: Not verified
- Engagement rate (ER): The average audience engagement rate is 3.63%. Within the first 24 hours after publication, content typically collects 1.36% reactions from the total number of subscribers.
- Post reach: On average, each post receives 2 747 views. Within the first day, a publication typically gains 1 032 views.
- Reactions and interaction: The audience actively supports content: the average number of reactions per post is 5.
- Thematic interests: Content is focused on key topics such as learning, accuracy, distribution, panda, dataset.
๐ Description and content policy
The author describes the resource as a platform for expressing subjective opinions:
โJoin this channel to learn data science, artificial intelligence and machine learning with funny quizzes, interesting projects and amazing resources for free
For collaborations: @love_dataโ
Thanks to the high frequency of updates (latest data received on 12 June, 2026), the channel maintains relevance and a high level of publication reach. Analytics show that the audience actively interacts with content, making it an important point of influence in the Education category.
student = { "name": "Rahul", "age": 22, "course": "Data Science" }
print(student)
Output: {'name': 'Rahul', 'age': 22, 'course': 'Data Science'}
โ Uses curly brackets {}
๐น 2. Access Dictionary Values
Use the key to access values.
student = { "name": "Rahul", "age": 22 }
print(student["name"])
Output: Rahul
๐น 3. Add New Elements
student = { "name": "Rahul", "age": 22 }
student["city"] = "Delhi"
print(student)
Output: {'name': 'Rahul', 'age': 22, 'city': 'Delhi'}
๐น 4. Modify Values
student["age"] = 23
๐น 5. Remove Elements
student.pop("age")
๐น 6. Important Dictionary Methods
โญ
โ
Get Method:
print(student.get("name"))
Output: Rahul
โ
Keys Method:
print(student.keys())
Output: dict_keys(['name', 'age'])
โ
Values Method:
print(student.values())
Output: dict_values(['Rahul', 22])
โ
Items Method:
print(student.items())
Output: dict_items([('name', 'Rahul'), ('age', 22)])
๐น 7. Loop Through Dictionary
student = { "name": "Rahul", "age": 22 }
for key, value in student.items():
print(key, value)
Output:
name Rahul
age 22
๐ฏ Todayโs Goal
โ Understand keyโvalue pairs
โ Access dictionary values
โ Add or update data
โ Loop through dictionary
๐ Dictionaries are widely used in APIs, JSON data, and machine learning datasets.
Double Tap โฅ๏ธ For Moreif condition:
# code
Example
age = 20
if age >= 18:
print("You can vote")
# Output: You can vote
๐น 2. ifโelse Statement
Used when there are two possible outcomes.
Syntax
if condition:
# code if true
else:
# code if false
Example
age = 16
if age >= 18:
print("Eligible to vote")
else:
print("Not eligible")
๐น 3. ifโelifโelse Statement
Used when there are multiple conditions.
Syntax
if condition1:
# code
elif condition2:
# code
else:
# code
Example
marks = 75
if marks >= 90:
print("Grade A")
elif marks >= 60:
print("Grade B")
else:
print("Grade C")
๐น 4. Nested if Statement
An if statement inside another if.
age = 20
citizen = True
if age >= 18:
if citizen:
print("Eligible to vote")
๐น 5. Short if (Ternary Operator)
age = 20
print("Adult") if age >= 18 else print("Minor")
๐ฏ Todayโs Goal
โ Understand if
โ Use ifโelse
โ Use elif for multiple conditions
โ Learn nested conditions
๐ Conditional logic is used in data filtering and decision models.
Double Tap โฅ๏ธ For Moredef function_name():
# code
โ
Example
def greet():
print("Hello Deepak")
greet()
Output: Hello Deepak
๐น 3. Function with Parameters
Parameters allow input to functions.
def greet(name):
print("Hello", name)
greet("Rahul")
# Output: Hello Rahul
๐น 4. Function with Return Value (Very Important โญ)
Instead of printing, functions can return values.
def add(a, b):
return a + b
result = add(5, 3)
print(result)
# Output: 8
๐ return sends value back.
๐น 5. Default Parameters
def greet(name="Guest"):
print("Hello", name)
greet()
greet("Amit")
๐น 6. Why Functions Matter in Data Science?
โ
Data cleaning functions
โ
Feature engineering functions
โ
Reusable ML pipelines
โ
Code organization
๐ฏ Todayโs Goal
โ Understand def
โ Use parameters
โ Use return
โ Call functions properly
Double Tap โฅ๏ธ For More
Available now! Telegram Research 2025 โ the year's key insights 
