What is docstring in Python?

Hi, I want to know What is docstring in Python

A docstring is a string literal that occurs as the first statement in a module, function, class, or method definition. Such a docstring becomes the doc special attribute of that object.

Check the link below for details: