Example & Tutorial understanding programming in easy ways.

What is DocString in Python ?

- A docstring in a Python is a unique text that happens to be the first statement in the following Python constructs:

Module, Function, Class, or Method definition.

A docstring gets added to the __doc__ attribute of the string object.

Read More →