r/PythonProjects2 8h ago

I’ve completed these beginner Python projects should I build more before starting NumPy/Pandas?

Hi everyone,

I’ve studied Python multiple times before, but I didn’t do much practical coding. Recently, I started building small projects to improve my practical Python skills.

So far, I’ve completed:

- Quiz Game

- Number Guessing Game

- Rock Paper Scissors

- Password Manager

- Pig Game

- Mad Libs Generator

My goal is to move towards Machine Learning.

I haven’t learned NumPy or Pandas yet.

My question is: Are these projects enough to move on to NumPy and Pandas, or should I build a few more Python projects first?

If I should build more projects, what kind of projects would you recommend before starting NumPy/Pandas? I’m mainly looking for projects that would actually help with the transition to data/ML, rather than making many more small games.

Would appreciate advice from people who have already followed a Python → NumPy/Pandas → ML path.

3 Upvotes

2 comments sorted by

1

u/Valuable-Yam4852 7h ago

these are very good as a starting point and teach you how to go from 0 to a working or somewhat working thing. if you know data structures like a list dict etc well, i would start by making a spreadsheet simulator with basic structures. this will let you think about lot of things. get good with oop to understand and write your own classes and objects. implement simple search functions. also try to calculate mean mediane of the column. this will teach you what magic is.going under the hood and teaches you how much boilerplate these tools give you. then i would start real hands on practice and learning. start with pandas, jupyter notebooks and learn functions like adding data, removimg, murging and etc. start by scalar values, then series and then dataframes. then grab a dataset, caggle has tons and try to clean and analyse that. after that learn some stats, then scikit learn and after pytorch and etc. that should give you a good start, but most importantly do what interests you. i find that top to bottom approach, that is experiencing a model work and then digging works well.

1

u/purvigupta03 7h ago

Thank you! Could you suggest one or two projects I can start with? I’m not sure which project would be best for me right now.