Docstrings are not actually comments, but, they are documentation strings. These docstrings are within triple quotes. They are not assigned to any variable and therefore, at times, serve the purpose of comments as well.
Example:
“””
Using docstring as a comment.
This code divides 2 numbers
“””
x=8
y=4
z=x/y
print(z)
Output: 2.0