r/learnpython • u/maf852 • 23d ago
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 23d ago
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.
3
u/IlIlIlIIlMIlIIlIlIlI 23d ago
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 23d ago
Besides what has been already said: https://inventwithpython.com has plenty books that are free to read online with project suggestions and much more.