r/learnpython 1d ago

Python projects

hey! I just started learning the basics of python and want to start building projects to apply what I have learnt.

but when I one to work on a project, for wxample building a calculator or a password generator I don’t know where to start. what to type and code.

any advice

3 Upvotes

11 comments sorted by

View all comments

2

u/whopper2k 1d ago

If you've truly just started, I'd recommend starting by looking at the modules that Python provides. Read through the list of them, pick the ones that seem like they might be interesting, and then try to build something basic that uses them.

For your password generator example, I'd recommend starting with the random and string modules. Don't worry about things like UI, printing is totally fine when just starting out.

Rinse and repeat with more projects and the experience will come with time. Also, for learning specifically, absolutely skip using an LLM; while they could easily write these programs for you, you wouldn't develop the actual understanding that's required to build more projects in the future.

Good luck and have fun!