Data Science & Machine Learning
74.3K subscribers
813 photos
2 videos
68 files
711 links
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
Download Telegram
Which of the following data structures is mutable (can be changed)?
Anonymous Quiz
17%
A) Tuple
16%
B) String
62%
C) List
5%
D) Set
4
What will be the output?

nums = [10, 20, 30] print(nums[1])
Anonymous Quiz
22%
10
75%
20
3%
30
2
Which method adds an element at the end of a list?
Anonymous Quiz
8%
A) add()
77%
B) append()
9%
C) insert()
6%
D) push()
2
Which data structure stores values in key–value pairs?
Anonymous Quiz
7%
A) List
8%
B) Tuple
80%
C) Dictionary
6%
D) Set
1
What will be the output?

nums = {1, 2, 2, 3} print(nums)
Anonymous Quiz
42%
A) {1, 2, 2, 3}
39%
B) {1, 2, 3}
14%
C) Error
5%
D) [1, 2, 3]
🤔52
Amazon Interview Process for Data Scientist position

📍Round 1- Phone Screen round
This was a preliminary round to check my capability, projects to coding, Stats, ML, etc.

After clearing this round the technical Interview rounds started. There were 5-6 rounds (Multiple rounds in one day).

📍 𝗥𝗼𝘂𝗻𝗱 𝟮- 𝗗𝗮𝘁𝗮 𝗦𝗰𝗶𝗲𝗻𝗰𝗲 𝗕𝗿𝗲𝗮𝗱𝘁𝗵:
In this round the interviewer tested my knowledge on different kinds of topics.

📍𝗥𝗼𝘂𝗻𝗱 𝟯- 𝗗𝗲𝗽𝘁𝗵 𝗥𝗼𝘂𝗻𝗱:
In this round the interviewers grilled deeper into 1-2 topics. I was asked questions around:
Standard ML tech, Linear Equation, Techniques, etc.

📍𝗥𝗼𝘂𝗻𝗱 𝟰- 𝗖𝗼𝗱𝗶𝗻𝗴 𝗥𝗼𝘂𝗻𝗱-
This was a Python coding round, which I cleared successfully.

📍𝗥𝗼𝘂𝗻𝗱 𝟱- This was 𝗛𝗶𝗿𝗶𝗻𝗴 𝗠𝗮𝗻𝗮𝗴𝗲𝗿 where my fitment for the team got assessed.

📍𝗟𝗮𝘀𝘁 𝗥𝗼𝘂𝗻𝗱- 𝗕𝗮𝗿 𝗥𝗮𝗶𝘀𝗲𝗿- Very important round, I was asked heavily around Leadership principles & Employee dignity questions.

So, here are my Tips if you’re targeting any Data Science role:
-> Never make up stuff & don’t lie in your Resume.
-> Projects thoroughly study.
-> Practice SQL, DSA, Coding problem on Leetcode/Hackerank.
-> Download data from Kaggle & build EDA (Data manipulation questions are asked)

Best Data Science & Machine Learning Resources: https://topmate.io/coding/914624

ENJOY LEARNING 👍👍
6
𝗔𝗜 & 𝗠𝗟 𝗖𝗲𝗿𝘁𝗶𝗳𝗶𝗰𝗮𝘁𝗶𝗼𝗻 𝗕𝘆 𝗜𝗜𝗧 𝗣𝗮𝘁𝗻𝗮 😍

Placement Assistance With 5000+ companies.

Companies are actively hiring candidates with AI & ML skills.

🎓 Prestigious IIT certificate
🔥 Hands-on industry projects
📈 Career-ready skills for AI & ML jobs

Deadline :- March 1, 2026
 
𝗥𝗲𝗴𝗶𝘀𝘁𝗲𝗿 𝗙𝗼𝗿 𝗦𝗰𝗵𝗼𝗹𝗮𝗿𝘀𝗵𝗶𝗽 𝗧𝗲𝘀𝘁 👇 :- 

https://pdlink.in/4pBNxkV

Limited seats only
1
Python Loops (for & while)

Loops help repeat tasks automatically — very important for data processing and automation.

🔹 1. What are Loops?
Loops repeat a block of code multiple times.
👉 Used in:
Data cleaning
Data analysis
Machine learning
Automation

🔥 2. for Loop (Most Used)
Used to iterate over a sequence (list, string, range).

Basic Syntax
for variable in sequence:
    # code

Example — Print Numbers
for i in range(5):
    print(i)

Output: 0 1 2 3 4
👉 range(5) → generates numbers from 0 to 4.

Loop Through List (Very Important)
numbers = [10, 20, 30]
for num in numbers:
    print(num)

👉 Used heavily in data science.

🔥 3. while Loop
Runs until condition becomes False.

Syntax
while condition:
    # code

Example
x = 1
while x <= 5:
    print(x)
    x += 1

Output: 1 2 3 4 5
👉 Important: Update condition to avoid infinite loop.

🔹 4. Loop Control Statements (Very Important)

break → stop loop
for i in range(5):
    if i == 3:
        break
    print(i)

Output: 0 1 2

continue → skip current iteration
for i in range(5):
    if i == 3:
        continue
    print(i)

Output: 0 1 2 4

🎯 Today’s Goal
Use for loop
Use while loop
Understand break & continue

Double Tap ♥️ For More
14👍1
𝗣𝗮𝘆 𝗔𝗳𝘁𝗲𝗿 𝗣𝗹𝗮𝗰𝗲𝗺𝗲𝗻𝘁 𝗧𝗿𝗮𝗶𝗻𝗶𝗻𝗴 😍

𝗟𝗲𝗮𝗿𝗻 𝗖𝗼𝗱𝗶𝗻𝗴 & 𝗚𝗲𝘁 𝗣𝗹𝗮𝗰𝗲𝗱 𝗜𝗻 𝗧𝗼𝗽 𝗠𝗡𝗖𝘀

 Eligibility:- BE/BTech / BCA / BSc

🌟 2000+ Students Placed
🤝 500+ Hiring Partners
💼 Avg. Rs. 7.4 LPA
🚀 41 LPA Highest Package

𝗕𝗼𝗼𝗸 𝗮 𝗙𝗥𝗘𝗘 𝗗𝗲𝗺𝗼👇:-

https://pdlink.in/4hO7rWY

( Hurry Up 🏃‍♂️Limited Slots )
1
Which loop is mostly used to iterate over a list or sequence in Python?
Anonymous Quiz
19%
A) while loop
13%
B) do-while loop
66%
C) for loop
2%
D) repeat loop
3
Which statement stops a loop immediately?
Anonymous Quiz
4%
A) stop
8%
B) exit
87%
C) break
2%
D) continue
2
What happens if we don’t update the condition inside a while loop?
Anonymous Quiz
9%
A) Syntax error
18%
B) Program stops automatically
69%
C) Infinite loop
4%
D) Nothing happens
1
Which function generates a sequence of numbers for looping?
Anonymous Quiz
20%
A) loop()
54%
B) range()
11%
C) generate()
14%
D) sequence()
1
𝗧𝗼𝗽 𝗖𝗲𝗿𝘁𝗶𝗳𝗶𝗰𝗮𝘁𝗶𝗼𝗻𝘀 𝗢𝗳𝗳𝗲𝗿𝗲𝗱 𝗕𝘆 𝗜𝗜𝗧'𝘀 & 𝗜𝗜𝗠 😍 

Placement Assistance With 5000+ companies.

Companies are actively hiring candidates with AI & ML skills.

Deadline: 28th Feb 2026

𝗔𝗜 & 𝗗𝗮𝘁𝗮 𝗦𝗰𝗶𝗲𝗻𝗰𝗲 :- https://pdlink.in/4kucM7E

𝗔𝗜 & 𝗠𝗮𝗰𝗵𝗶𝗻𝗲 𝗟𝗲𝗮𝗿𝗻𝗶𝗻𝗴 :- https://pdlink.in/4rMivIA

𝗗𝗮𝘁𝗮 𝗔𝗻𝗮𝗹𝘆𝘁𝗶𝗰𝘀 𝗪𝗶𝘁𝗵 𝗔𝗜 :- https://pdlink.in/4ay4wPG

𝗕𝘂𝘀𝗶𝗻𝗲𝘀𝘀 𝗔𝗻𝗮𝗹𝘆𝘁𝗶𝗰𝘀 𝗪𝗶𝘁𝗵 𝗔𝗜 :- https://pdlink.in/3ZtIZm9

𝗠𝗟 𝗪𝗶𝘁𝗵 𝗣𝘆𝘁𝗵𝗼𝗻 :- https://pdlink.in/3OD9jI1

Hurry Up...Limited seats only
1
Python Functions 🐍⚙️

Functions are very important in data science. They help you write reusable, clean, and modular code.

🔹 1. What is a Function?
A function is a block of code that performs a specific task.
👉 Instead of writing the same code again and again, we create a function.

🔥 2. Creating a Function

Basic Syntax
def 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
23👏1
𝗔𝗜 & 𝗗𝗮𝘁𝗮 𝗦𝗰𝗶𝗲𝗻𝗰𝗲 𝗖𝗲𝗿𝘁𝗶𝗳𝗶𝗰𝗮𝘁𝗶𝗼𝗻 𝗣𝗿𝗼𝗴𝗿𝗮𝗺 𝗕𝘆 𝗜𝗜𝗧 𝗥𝗼𝗼𝗿𝗸𝗲𝗲 😍

👉Learn from IIT faculty and industry experts
🔥100% Online | 6 Months
🎓Get Prestigious Certificate

 💫Companies are actively hiring candidates with Data Science & AI skills.

 Deadline: 8th March 2026

𝗥𝗲𝗴𝗶𝘀𝘁𝗲𝗿 𝗙𝗼𝗿 𝗦𝗰𝗵𝗼𝗹𝗮𝗿𝘀𝗵𝗶𝗽 𝗧𝗲𝘀𝘁 👇 :- 

https://pdlink.in/4kucM7E

Limited seats only
1
🔍 Machine Learning Cheat Sheet 🔍

1. Key Concepts:
- Supervised Learning: Learn from labeled data (e.g., classification, regression).
- Unsupervised Learning: Discover patterns in unlabeled data (e.g., clustering, dimensionality reduction).
- Reinforcement Learning: Learn by interacting with an environment to maximize reward.

2. Common Algorithms:
- Linear Regression: Predict continuous values.
- Logistic Regression: Binary classification.
- Decision Trees: Simple, interpretable model for classification and regression.
- Random Forests: Ensemble method for improved accuracy.
- Support Vector Machines: Effective for high-dimensional spaces.
- K-Nearest Neighbors: Instance-based learning for classification/regression.
- K-Means: Clustering algorithm.
- Principal Component Analysis(PCA)

3. Performance Metrics:
- Classification: Accuracy, Precision, Recall, F1-Score, ROC-AUC.
- Regression: Mean Absolute Error (MAE), Mean Squared Error (MSE), R^2 Score.

4. Data Preprocessing:
- Normalization: Scale features to a standard range.
- Standardization: Transform features to have zero mean and unit variance.
- Imputation: Handle missing data.
- Encoding: Convert categorical data into numerical format.

5. Model Evaluation:
- Cross-Validation: Ensure model generalization.
- Train-Test Split: Divide data to evaluate model performance.

6. Libraries:
- Python: Scikit-Learn, TensorFlow, Keras, PyTorch, Pandas, Numpy, Matplotlib.
- R: caret, randomForest, e1071, ggplot2.

7. Tips for Success:
- Feature Engineering: Enhance data quality and relevance.
- Hyperparameter Tuning: Optimize model parameters (Grid Search, Random Search).
- Model Interpretability: Use tools like SHAP and LIME.
- Continuous Learning: Stay updated with the latest research and trends.

🚀 Dive into Machine Learning and transform data into insights! 🚀

Best Data Science & Machine Learning Resources: https://topmate.io/coding/914624

All the best 👍👍
6
Conditional Statements (if–else) 🐍

Conditional statements allow programs to make decisions based on conditions.

👉 Used heavily in:
Data filtering
Business rules
Machine learning logic

🔹 1. if Statement
Used to execute code when a condition is True.

Syntax
if 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 More
13
🎯 2026 IT Certification Prep Kit – Free!

🔥Whether you're preparing for #Python, #AI, #Cisco, #PMI, #Fortinet, #AWS, #Azure, #Excel, #comptia, #ITIL, #cloud or any other in-demand certification – SPOTO has got you covered!

What’s Inside:
・Free Python, Excel, Cyber Security, Cisco, SQL, ITIL, PMP, AWS courses: https://bit.ly/4cZ9PKA
・IT Certs E-book: https://bit.ly/4aQfbqc
・IT Exams Skill Test: https://bit.ly/4aQf3He
・Free AI material and support tools:https://bit.ly/4ucJoHO
・Free Cloud Study Guide: https://bit.ly/3OExOVB


👉 Become Part of Our IT Learning Circle! resources and support:
https://chat.whatsapp.com/Cnc5M5353oSBo3savBl397

💬 Want exam help? Chat with an admin now!
https://wa.link/0pjvhh
2
𝗜𝗜𝗧 𝗥𝗼𝗼𝗿𝗸𝗲𝗲 𝗢𝗳𝗳𝗲𝗿𝗶𝗻𝗴 𝗖𝗲𝗿𝘁𝗶𝗳𝗶𝗰𝗮𝘁𝗶𝗼𝗻 𝗣𝗿𝗼𝗴𝗿𝗮𝗺 𝗶𝗻 𝗗𝗮𝘁𝗮 𝗔𝗻𝗮𝗹𝘆𝘁𝗶𝗰𝘀📊 𝘄𝗶𝘁𝗵 𝗔𝗜 𝗮𝗻𝗱 𝗚𝗲𝗻 𝗔𝗜 😍

Placement Assistance With 5000+ companies.

🔥 Companies are actively hiring candidates with Data Analytics skills.

🎓 Prestigious IIT certificate
🔥 Hands-on industry projects
📈 Career-ready skills for data & AI jobs

𝐑𝐞𝐠𝐢𝐬𝐭𝐞𝐫 𝐍𝐨𝐰👇 :- 

https://pdlink.in/4rwqIAm

Limited seats available. Apply now to secure your spot
3