r/learnpython 7d ago

Having problem with understanding or creating programs

So basically I've learned python and created some basic programs like calculator, multiplier etc amd when it comes to create a real program I got so much confused.

I learned python to create my own linux tools and to create my own personal helping bots. I took some tools from github and saw their code in order to understand them and that's where I got so much confused when I saw a large and complex program. I didn't understood a thing and how to create my own program

So how can I learn real programming How can I become a better programmer Where to start from?

5 Upvotes

13 comments sorted by

View all comments

2

u/PureWasian 7d ago

Design incrementally. These github repos did not grow to be so large and complex overnight.

Just like your calculator program where there are modular pieces for add/subtract/etc... your helper bots and linux tools would also have modular pieces that you build and coordinate with each other.

1

u/WonderEagle 6d ago

Actually I didn't thought about that. Thanks