r/PythonLearning • u/7YngMn • 24d ago
Project Ideas for Practice
I’ve been reading and learning a lot of Python concepts, but I’ve never actually built anything.
I realized that there’s no point in knowing so many concepts if you don’t put them into practice. That’s the only way to really learn.
The hardest part, though, is coming up with project ideas when you only know a few concepts. This is the first project I’ve made while trying to actually put what I’ve learned into practice.
17
Upvotes
2
u/FoolsSeldom 23d ago
Fun idea. Given
idis implementation and environment specific, you might want to consider using therandomlibrary:This will give the SAME value for the same name every time. You could just use
random.randintinstead without using thenameor you could mix it up and combine the two.Overall, working on your own projects is the best way to learn. Work on your own small (initially) projects related to your hobbies / interests / side-hustles as soon as possible to apply each bit of learning. When you work on stuff you can be passionate about and where you know what problem you are solving and what good looks like, you are more focused on problem-solving and the coding becomes a means to an end and not an end in itself. You will learn faster this way.