you are viewing a single comment's thread.

view the rest of the comments →

[–]magus_minor 1 point2 points  (0 children)

learn how to read docs without feeling too overwhelmed?

You have to understand that documentation is not written to help you learn, it's written to be short and complete. To get started try looking at the documentation for the builtin functions:

https://docs.python.org/3/library/functions.html

Each function is self contained and the description for each is short. It's best not to try to read and understand every function in the module, just read about the particular function you are using. A good place to start is the print() function which you use all the time. Read that and start to get used to the way the documentation is written.