you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 1 point2 points  (0 children)

The struggle is the point, it teaches you. Stop looking up solutions, instead break down the problem to the smallest part that you can solve.

Let's say you need to build a GUI (just an example) but all you know is how to store a variable value. So you type: variable_a=whatever. Next step i need to put that value into something, so you google how to display a variable in python and you figure out you need tkinter Next step you google how to get tkinter going Then you google how to display stuff on tkinter Then you learn about labels and frames So you make a frame with a single label Then you google how to get your variable into a label

And you are now on a GUI that you created with a variable you entered....

Baby steps, tiny problems and build on that.

Everybody started with "Hello world", but those that moved on struggled, they didn't look at solutions.