What is documentation?

Documentation is essentially the owner’s manual of a programming language. If you run into a problem while programming, visiting the documentation of your selected programming language can solve your problem.

At first, documentation might be difficult to navigate and understand. As you get better at programming, documentation become easier to read. Many professional programmers learn new programming languages by reading the documentation of a new language.

Here is a article that explains the art of reading documentation: https://sweetcode.io/art-reading-documentation/


Documentations

1. Java

Java Docs Homepage: https://docs.oracle.com/javase/7/docs/api/

Recommended Java Docs Link: https://docs.oracle.com/javase/7/docs/api/allclasses-noframe.html

  1. Type “ctrl + f” on your keyboard and type in the class name you want to learn more about:

Untitled

Untitled

  1. That’s it! Now you can read more about that desired class:

Untitled


2. Python