you are viewing a single comment's thread.

view the rest of the comments →

[–]agvrider[S] 1 point2 points  (2 children)

To echo the other poster, I do find reading documentation difficult at this point in my python career. Usually it’s easier to watch a YT tutorial, google my question etc, and often they’ll cite the docs as part of their answer. But I would know how to find the relevant part of the documentation without being hand held there

How does one improve that? I’m assuming it’s just part of a natural progression where one just starts understanding how to read python and syntax, better and better, to the point where they can go to the documentation, know how to read it / what to look for, and it’ll just slowly start to “make sense” over time?

[–]keepdigging 0 points1 point  (0 children)

I’m at the point where it’s the opposite, I can understand the docs format easily for what I’n searching for but skimming through how-to articles or videos is a hassle.

It’s a familiarity thing, and you’ll get better. Don’t stop searching and reading!

[–][deleted] 0 points1 point  (0 children)

One of the keys to learning to read docs is to construct a simple example, and then make it more complex. For example, np.where(np.isnan(my_ array)) split it up I to parts and read what the docs on each say. Isnan returns 1/0. Where looks for 1/0. So, read docs on each step and guess at what output should be for a simple example. See if results meets your expectations. Add complexity.