(no title)
Silixon | 7 years ago
I'd be curious to know what you like about the Python documentation because my experience has probably been different than yours.
Silixon | 7 years ago
I'd be curious to know what you like about the Python documentation because my experience has probably been different than yours.
AkshayD08|7 years ago
spicytunacone|7 years ago
More on-topic, searching is a major weakness of Python's docs. What's that? Python just got multi-line strings allowing embedded expressions? They're called f-strings? Let me go read about them[2]. I can't link it, but even using Startpage the immediate results are a post from RealPython and PEP498 and while both are great, they aren't terse enough to be frequently referenced. If you search for "formatted string literal"[3] in the docs it takes 10 results before you reach something explicitly talking about them. And then you need to follow the links a couple times to reach https://docs.python.org/3/reference/lexical_analysis.html#f-... (notice it is anchored as "f-strings" which was the first term we searched for).
While the Python docs, when I've found them, have been adequate for me so far -- although I still check up on how others do the things I want to do -- I'm partial to docs such as MDN that cover parameters and return value in one take for reference with more in-depth information as you scroll down, if needed[4].
[0]: https://www.crummy.com/software/BeautifulSoup/
[1]: Here's a start for reading. https://stackoverflow.com/questions/8689964/why-do-some-func...
[2]: https://docs.python.org/3/search.html?q=f-string
[3]: https://docs.python.org/3/search.html?q=formatted+string+lit...
[4]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe...