0 votes
in Python by
What Is Docstring In Python?

1 Answer

0 votes
by
A docstring 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.

Now, read some of the Python interview questions on functions.

Related questions

0 votes
asked Jun 29, 2020 in Python by Robindeniel
+1 vote
asked Jan 30, 2022 in Python by sharadyadav1986
...