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
Ko'proq ko'rsatish๐ Telegram kanali Data Science & Machine Learning analitikasi
Data Science & Machine Learning (@datasciencefun) Ingliz til segmentidagi kanali faol ishtirokchi. Hozirda hamjamiyat 75 645 obunachidan iborat bo'lib, Taสผlim toifasida 2 114-o'rinni va Hindiston mintaqasida 4 359-o'rinni egallagan.
๐ Auditoriya koโrsatkichlari va dinamika
ะฝะตะฒัะดะพะผะพ sanasidan buyon loyiha tez oโsib, 75 645 obunachiga ega boโldi.
11 Iyun, 2026 dagi oxirgi maโlumotlarga koโra kanal barqaror faollikka ega. Oxirgi 30 kunda obunachilar soni 911 ga, soโnggi 24 soatda esa 29 ga oโzgardi va umumiy qamrov yuqori darajada qolmoqda.
- Tasdiqlash holati: Tasdiqlanmagan
- Jalb etish (ER): Auditoriya oโrtacha 3.63% darajada jalb etiladi. Nashrdan keyingi dastlabki 24 soatda kontent odatda umumiy obunachilar sonining 1.36% ini tashkil etuvchi reaksiyalarni toโplaydi.
- Post qamrovi: Har bir post oโrtacha 2 747 marta koโriladi; birinchi sutkada odatda 1 032 ta koโrish yigโiladi.
- Reaksiyalar va oโzaro taโsir: Auditoriya faol: har bir postga oโrtacha 5 ta reaksiya keladi.
- Tematik yoโnalishlar: Kontent learning, accuracy, distribution, panda, dataset kabi asosiy mavzularga jamlangan.
๐ Tavsif va kontent siyosati
Muallif resursni shaxsiy fikrni ifoda etish maydoni sifatida taโriflaydi:
โ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โ
Yuqori yangilanish chastotasi (oxirgi maโlumot 12 Iyun, 2026 da olingan) sababli kanal doimo dolzarb va katta qamrovli boโlib qoladi. Analitika auditoriya kontent bilan faol hamkorlik qilishini, uni Taสผlim toifasidagi muhim taโsir nuqtasiga aylantirishini koโrsatadi.
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
Endi mavjud! Telegram Tadqiqoti 2025 โ yilning asosiy insaytlari 
