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
Больше📈 Аналитический обзор Telegram-канала Data Science & Machine Learning
Канал Data Science & Machine Learning (@datasciencefun) языкового сегмента Английский является активным участником. Сейчас сообщество объединяет 75 645 подписчиков, занимая 2 114 место в категории Образование и 4 359 место в регионе Индия.
📊 Показатели аудитории и динамика
С момента создания невідомо проект демонстрирует стремительный рост, собрав аудиторию из 75 645 подписчиков.
Согласно последним данным от 11 июня, 2026, канал показывает стабильную активность. За последние 30 дней изменение числа участников составило 911, а за последние 24 часа — 29, при этом общий охват остаётся высоким.
- Статус верификации: Не верифицирован
- Уровень вовлечённости (ER): Средний показатель вовлечённости аудитории составляет 3.63%. В первые 24 часа после публикации контент обычно набирает 1.36% реакций от общего числа подписчиков.
- Охват публикаций: В среднем каждый пост получает 2 747 просмотров. В течение первых суток публикация набирает 1 032 просмотров.
- Реакции и взаимодействия: Аудитория активно поддерживает контент: среднее количество реакций на один пост — 5.
- Тематические интересы: Контент сосредоточен на ключевых темах, таких как learning, accuracy, distribution, panda, dataset.
📝 Описание и контентная политика
Автор описывает ресурс как площадку для выражения субъективного мнения:
“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”
Благодаря высокой частоте обновлений (последние данные получены 12 июня, 2026) канал поддерживает актуальность и высокий уровень охвата публикаций. Аналитика показывает, что аудитория активно взаимодействует с контентом, что делает его важной точкой влияния в категории Образование.
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
Уже доступно! Исследование Telegram 2025 — ключевые инсайты года 
