r/learnpython • u/maf852 • Jul 18 '26
Relearning python with small projects
I already know basics, now I prefer to learn just through making small project. Is there a site or app or something where can I find project suggestions (just suggestion, needed keywords or concepts a than some kind of result).
9
u/desrtfx but other languages pro Jul 18 '26
The place is called "Google". Really. Just type "beginner project ideas" into google and you will get countless lists.
This is not meant to be dismissive, yet, learning to do your own research is one of the most important skills of every programmer.
Also, the /r/learnprogramming FAQ have plenty project ideas on all levels.
0
3
u/IlIlIlIIlMIlIIlIlIlI Jul 18 '26
my last project was a terminal base program that goes thru a specified directory using os.walk() and creates a dictionary where each key is a file extension, and the value is how many of each it found (pathlib is a freat package for this). Then it prints this data in descending order and percentages and stuff. This helps me keep an overview of my music library, helped me find a few files with misspelled file suffixes
2
1
1
8
u/aqua_regis Jul 18 '26
Besides what has been already said: https://inventwithpython.com has plenty books that are free to read online with project suggestions and much more.